@sebgroup/green-angular 6.6.0 → 6.7.0-rc.20251023071717294

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/esm2022/src/v-angular/alert/alert.component.mjs +2 -2
  2. package/esm2022/src/v-angular/button/button.component.mjs +2 -2
  3. package/esm2022/src/v-angular/datepicker/components/date-input/date-input.component.mjs +2 -2
  4. package/esm2022/src/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +14 -2
  5. package/esm2022/src/v-angular/dropdown/dropdown.component.mjs +1 -1
  6. package/esm2022/src/v-angular/input/input.component.mjs +2 -2
  7. package/esm2022/src/v-angular/modal/dialog/dialog.component.mjs +2 -2
  8. package/esm2022/src/v-angular/modal/slide-out/slide-out.component.mjs +3 -3
  9. package/esm2022/src/v-angular/table/table.component.mjs +3 -3
  10. package/esm2022/src/v-angular/tabs/tabs.component.mjs +2 -2
  11. package/esm2022/v-angular/alert/alert.component.mjs +2 -2
  12. package/esm2022/v-angular/button/button.component.mjs +2 -2
  13. package/esm2022/v-angular/datepicker/components/date-input/date-input.component.mjs +2 -2
  14. package/esm2022/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +14 -2
  15. package/esm2022/v-angular/dropdown/dropdown.component.mjs +1 -1
  16. package/esm2022/v-angular/input/input.component.mjs +2 -2
  17. package/esm2022/v-angular/modal/dialog/dialog.component.mjs +2 -2
  18. package/esm2022/v-angular/modal/slide-out/slide-out.component.mjs +3 -3
  19. package/esm2022/v-angular/table/table.component.mjs +3 -3
  20. package/esm2022/v-angular/tabs/tabs.component.mjs +2 -2
  21. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs +2 -2
  22. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs.map +1 -1
  23. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs +2 -2
  24. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs.map +1 -1
  25. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs +2 -2
  26. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs.map +1 -1
  27. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs +14 -2
  28. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs.map +1 -1
  29. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs +2 -2
  30. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs.map +1 -1
  31. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs +4 -4
  32. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs.map +1 -1
  33. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs +2 -2
  34. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs.map +1 -1
  35. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs +2 -2
  36. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs.map +1 -1
  37. package/fesm2022/sebgroup-green-angular-v-angular.mjs +30 -18
  38. package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +1 -1
  39. package/package.json +2 -2
  40. package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +10 -1
  41. package/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +10 -1
@@ -139,11 +139,11 @@ class AlertComponent {
139
139
  this.clickAction.emit(e);
140
140
  }
141
141
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
142
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: AlertComponent, selector: "nggv-alert", inputs: { type: "type", title: "title", body: "body", linkText: "linkText", linkHref: "linkHref", actionText: "actionText", closable: "closable" }, outputs: { closeAlert: "closeAlert", clickLink: "clickLink", clickAction: "clickAction" }, ngImport: i0, template: "<div class=\"alert-container\" role=\"alert\" [ngClass]=\"type\">\n <ng-container [ngSwitch]=\"type\">\n <ng-container\n *ngSwitchCase=\"'success'\"\n [ngTemplateOutlet]=\"checkMark\"\n ></ng-container>\n <ng-container\n *ngSwitchCase=\"'information'\"\n [ngTemplateOutlet]=\"infoSquare\"\n ></ng-container>\n <ng-container\n *ngSwitchDefault\n [ngTemplateOutlet]=\"exclamationSquare\"\n ></ng-container>\n </ng-container>\n <div>\n <h3 *ngIf=\"title\">{{ title }}</h3>\n <p *ngIf=\"body\">\n {{ body }}&nbsp;<a\n *ngIf=\"linkText\"\n [href]=\"linkHref\"\n (click)=\"onLink($event)\"\n >{{ linkText }}</a\n >\n </p>\n </div>\n <button\n *ngIf=\"closable && !actionText\"\n class=\"close\"\n type=\"button\"\n (click)=\"onClose($event)\"\n >\n <i></i>\n </button>\n <footer *ngIf=\"actionText && !closable\">\n <button type=\"button\" (click)=\"onAction($event)\">\n {{ actionText }}\n </button>\n </footer>\n</div>\n\n<ng-template #checkMark>\n <i>\n <svg\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M17.6203 6.60836L9.40014 14.8285L6.37976 11.8081C6.23332 11.6617 5.99588 11.6617 5.84942 11.8081L4.96554 12.692C4.8191 12.8384 4.8191 13.0759 4.96554 13.2223L9.13495 17.3917C9.28138 17.5382 9.51882 17.5382 9.66529 17.3917L19.0344 8.02258C19.1809 7.87614 19.1809 7.63871 19.0344 7.49224L18.1506 6.60836C18.0041 6.46193 17.7667 6.46193 17.6203 6.60836Z\"\n fill=\"white\"\n ></path>\n </svg>\n </i>\n</ng-template>\n<ng-template #infoSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM12 7.07143C12.8284 7.07143 13.5 7.743 13.5 8.57143C13.5 9.39986 12.8284 10.0714 12 10.0714C11.1716 10.0714 10.5 9.39986 10.5 8.57143C10.5 7.743 11.1716 7.07143 12 7.07143ZM14 16.1429C14 16.3795 13.8081 16.5714 13.5714 16.5714H10.4286C10.1919 16.5714 10 16.3795 10 16.1429V15.2857C10 15.049 10.1919 14.8571 10.4286 14.8571H10.8571V12.5714H10.4286C10.1919 12.5714 10 12.3795 10 12.1429V11.2857C10 11.049 10.1919 10.8571 10.4286 10.8571H12.7143C12.951 10.8571 13.1429 11.049 13.1429 11.2857V14.8571H13.5714C13.8081 14.8571 14 15.049 14 15.2857V16.1429Z\"\n fill=\"#333333\"\n />\n </svg>\n </i>\n</ng-template>\n<ng-template #exclamationSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM10.8682 7.42857H13.1318C13.3777 7.42857 13.5731 7.635 13.5597 7.8805L13.2948 12.7376C13.2824 12.9649 13.0945 13.1429 12.8669 13.1429H11.1331C10.9055 13.1429 10.7176 12.9649 10.7052 12.7376L10.4402 7.8805C10.4269 7.635 10.6223 7.42857 10.8682 7.42857ZM12 17.0714C11.0927 17.0714 10.3571 16.3359 10.3571 15.4286C10.3571 14.5213 11.0927 13.7857 12 13.7857C12.9073 13.7857 13.6429 14.5213 13.6429 15.4286C13.6429 16.3359 12.9073 17.0714 12 17.0714Z\"\n fill=\"currentColor\"\n />\n </svg>\n </i>\n</ng-template>\n", styles: ["div[role=alert],.alert-ribbon{--background: hsl(var(--sg-intent-neutral-hsl));--color: var(--text-primary-color);--border-color: var(--text-primary-color);background:var(--background);border-radius:0;border:solid 1px var(--border-color);color:var(--color);padding:1rem;display:inline-grid;grid-template-columns:auto 1fr auto;grid-template-rows:min-content 1fr;grid-template-areas:\"icon content dismiss\" \"footer footer footer\"}@media (min-width: 36em){div[role=alert],.alert-ribbon{grid-template-areas:\"icon content dismiss\" \"icon content footer\"}}div[role=alert]>i,.alert-ribbon>i{display:block;width:1.5rem;height:1.5rem;margin-inline-end:.5rem;grid-area:icon}div[role=alert]>i svg>*,.alert-ribbon>i svg>*{fill:var(--text-primary-color)}div[role=alert]>div:not(.alert-ribbon__footer),div[role=alert] .alert-ribbon__content,.alert-ribbon>div:not(.alert-ribbon__footer),.alert-ribbon .alert-ribbon__content{grid-area:content;max-width:75ch}div[role=alert]>div:not(.alert-ribbon__footer):has(+button),div[role=alert] .alert-ribbon__content:has(+button),.alert-ribbon>div:not(.alert-ribbon__footer):has(+button),.alert-ribbon .alert-ribbon__content:has(+button){padding-right:.5rem}div[role=alert]>div:not(.alert-ribbon__footer)>h1,div[role=alert]>div:not(.alert-ribbon__footer) h2,div[role=alert]>div:not(.alert-ribbon__footer) h3,div[role=alert]>div:not(.alert-ribbon__footer) h4,div[role=alert]>div:not(.alert-ribbon__footer) h5,div[role=alert]>div:not(.alert-ribbon__footer) .header,div[role=alert] .alert-ribbon__content>h1,div[role=alert] .alert-ribbon__content h2,div[role=alert] .alert-ribbon__content h3,div[role=alert] .alert-ribbon__content h4,div[role=alert] .alert-ribbon__content h5,div[role=alert] .alert-ribbon__content .header,.alert-ribbon>div:not(.alert-ribbon__footer)>h1,.alert-ribbon>div:not(.alert-ribbon__footer) h2,.alert-ribbon>div:not(.alert-ribbon__footer) h3,.alert-ribbon>div:not(.alert-ribbon__footer) h4,.alert-ribbon>div:not(.alert-ribbon__footer) h5,.alert-ribbon>div:not(.alert-ribbon__footer) .header,.alert-ribbon .alert-ribbon__content>h1,.alert-ribbon .alert-ribbon__content h2,.alert-ribbon .alert-ribbon__content h3,.alert-ribbon .alert-ribbon__content h4,.alert-ribbon .alert-ribbon__content h5,.alert-ribbon .alert-ribbon__content .header{display:inline;font-size:1rem;font-weight:500;line-height:1.5rem;margin-right:.25rem}div[role=alert]>div:not(.alert-ribbon__footer)>p,div[role=alert] .alert-ribbon__content>p,.alert-ribbon>div:not(.alert-ribbon__footer)>p,.alert-ribbon .alert-ribbon__content>p{display:inline;line-height:1.5rem;margin-bottom:0;margin-top:0}div[role=alert]>div:not(.alert-ribbon__footer)>p a,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),div[role=alert] .alert-ribbon__content>p a,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]),.alert-ribbon>div:not(.alert-ribbon__footer)>p a,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),.alert-ribbon .alert-ribbon__content>p a,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]){color:var(--color)}div[role=alert]>div:not(.alert-ribbon__footer)>p a:hover,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,div[role=alert] .alert-ribbon__content>p a:hover,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon .alert-ribbon__content>p a:hover,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover{color:var(--color)}div[role=alert] button.close,.alert-ribbon button.close{grid-area:dismiss;justify-self:flex-end;margin:-.5rem -.375rem 0 .375rem;background-color:transparent;--background-hsl: var(--sg-hsl-black);--color: var(--text-primary-color)}div[role=alert] button.close>i:after,div[role=alert] button.close>i:before,.alert-ribbon button.close>i:after,.alert-ribbon button.close>i:before{background-color:var(--color)}div[role=alert] button.close:hover>i:after,div[role=alert] button.close:hover>i:before,.alert-ribbon button.close:hover>i:after,.alert-ribbon button.close:hover>i:before{background-color:var(--color)}@media (min-width: 36em){div[role=alert] button.close+footer,div[role=alert] button.close .alert-ribbon__footer,.alert-ribbon button.close+footer,.alert-ribbon button.close .alert-ribbon__footer{margin-top:.75rem}}div[role=alert] a:link:focus:not(:focus-visible),.alert-ribbon a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert] a:link:focus,div[role=alert] a:link:focus-within,.alert-ribbon a:link:focus,.alert-ribbon a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert] a:link:not(.button,[aria-disabled]),.alert-ribbon a:link:not(.button,[aria-disabled]){color:var(--text-primary-color)}div[role=alert] a:link:not(.button,[aria-disabled]):hover,div[role=alert] a:link:not(.button,[aria-disabled]):focus,div[role=alert] a:link:not(.button,[aria-disabled]):visited,.alert-ribbon a:link:not(.button,[aria-disabled]):hover,.alert-ribbon a:link:not(.button,[aria-disabled]):focus,.alert-ribbon a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert] a,.alert-ribbon a{text-decoration:underline!important;transition:opacity .3s ease-in-out}div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{grid-area:footer;align-self:end}@media (max-width: 35.98em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-left:.75rem}}div[role=alert]>footer>a,div[role=alert] .alert-ribbon__footer>a,.alert-ribbon>footer>a,.alert-ribbon .alert-ribbon__footer>a{display:flex}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);min-height:2rem;padding:.4375rem .75rem;line-height:1.125rem}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 35.98em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-left:.75rem}}div[role=alert].info,.alert-ribbon.info{--background: hsl(var(--sg-intent-info-hsl));--color: hsl(var(--sg-intent-info-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info .close,.alert-ribbon.info .close{--color: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info i>svg>*,.alert-ribbon.info i>svg>*{fill:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].info a:link:focus:not(:focus-visible),.alert-ribbon.info a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].info a:link:focus,div[role=alert].info a:link:focus-within,.alert-ribbon.info a:link:focus,.alert-ribbon.info a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].info a:link:not(.button,[aria-disabled]),.alert-ribbon.info a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info a:link:not(.button,[aria-disabled]):hover,div[role=alert].info a:link:not(.button,[aria-disabled]):focus,div[role=alert].info a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.info a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.info a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.info a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].success,.alert-ribbon.success{--background: hsl(var(--sg-intent-success-hsl));--color: var(--gds-sys-color-text-inverted);--border-color: transparent;--gds-sys-color-focus-outline: var(--gds-sys-color-text-inverted)}div[role=alert].success .close,.alert-ribbon.success .close{--color: var(--gds-sys-color-text-inverted)}div[role=alert].success i>svg>*,.alert-ribbon.success i>svg>*{fill:var(--gds-sys-color-text-inverted)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].success a:link:focus:not(:focus-visible),.alert-ribbon.success a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].success a:link:focus,div[role=alert].success a:link:focus-within,.alert-ribbon.success a:link:focus,.alert-ribbon.success a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].success a:link:not(.button,[aria-disabled]),.alert-ribbon.success a:link:not(.button,[aria-disabled]){color:var(--gds-sys-color-text-inverted)}div[role=alert].success a:link:not(.button,[aria-disabled]):hover,div[role=alert].success a:link:not(.button,[aria-disabled]):focus,div[role=alert].success a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.success a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.success a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.success a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].warning,.alert-ribbon.warning{--background: hsl(var(--sg-intent-warning-hsl));--color: hsl(var(--sg-intent-warning-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning .close,.alert-ribbon.warning .close{--color: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning i>svg>*,.alert-ribbon.warning i>svg>*{fill:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].warning a:link:focus:not(:focus-visible),.alert-ribbon.warning a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].warning a:link:focus,div[role=alert].warning a:link:focus-within,.alert-ribbon.warning a:link:focus,.alert-ribbon.warning a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].warning a:link:not(.button,[aria-disabled]),.alert-ribbon.warning a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning a:link:not(.button,[aria-disabled]):hover,div[role=alert].warning a:link:not(.button,[aria-disabled]):focus,div[role=alert].warning a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].danger,.alert-ribbon.danger{--background: hsl(var(--sg-intent-critical-hsl));--color: hsl(var(--sg-intent-critical-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger .close,.alert-ribbon.danger .close{--color: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger i>svg>*,.alert-ribbon.danger i>svg>*{fill:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].danger a:link:focus:not(:focus-visible),.alert-ribbon.danger a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].danger a:link:focus,div[role=alert].danger a:link:focus-within,.alert-ribbon.danger a:link:focus,.alert-ribbon.danger a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].danger a:link:not(.button,[aria-disabled]),.alert-ribbon.danger a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger a:link:not(.button,[aria-disabled]):hover,div[role=alert].danger a:link:not(.button,[aria-disabled]):focus,div[role=alert].danger a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):visited{color:currentColor}.close{font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){.close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}.close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}.close:not(:disabled):not(.disabled)>div:after,.close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}.close:focus:not(:focus-visible){box-shadow:none;outline:0}.close:focus,.close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}.close>i:after,.close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}.close>i:after{transform:rotate(45deg)}.close>i:before{transform:rotate(-45deg)}.close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){.close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}.close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host{--sg-intent-neutral-hsl: 0deg, 0%, 91.3725490196%;--sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;--sg-intent-success-hsl-contrast: 0deg, 0%, 100%;--sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;--sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;--sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;--sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;--gds-ref-pallet-base000: hsl(0 0% 100%);--text-primary-color: #333;--sg-border-width: 1px;--sg-border-width-50: .5px;--sg-border-radius: .25rem;--gds-sys-color-font: #333;--sg-border-color: #868686}:host .alert-container{box-sizing:border-box;width:100%}:host .alert-container a{cursor:pointer}:host .alert-container button{font-size:1rem;font-family:inherit}:host .alert-container button:not(.close){padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}@media (max-width: 35.98em){:host .alert-container button:not(.close){min-width:100%}}@media screen and (-ms-high-contrast: active){:host .alert-container button:not(.close){border:2px solid currentcolor}}:host .alert-container button:not(.close).small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .alert-container button:not(.close).large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .alert-container button:not(.close):focus:not(:focus-visible){box-shadow:none;outline:0}:host .alert-container button:not(.close):focus,:host .alert-container button:not(.close):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .alert-container button:not(.close):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .alert-container button:not(.close)[aria-selected=true],:host .alert-container button:not(.close):active,:host .alert-container button:not(.close).active,:host .alert-container button:not(.close).active:hover,:host .alert-container button:not(.close):active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .alert-container button:not(.close):disabled,:host .alert-container button:not(.close).disabled,:host .alert-container button:not(.close)[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .alert-container button:not(.close):disabled::placeholder,:host .alert-container button:not(.close).disabled::placeholder,:host .alert-container button:not(.close)[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .alert-container .close{padding:0}:host .alert-container .close i{width:2rem;height:2rem;border-radius:50%}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }] }); }
142
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: AlertComponent, selector: "nggv-alert", inputs: { type: "type", title: "title", body: "body", linkText: "linkText", linkHref: "linkHref", actionText: "actionText", closable: "closable" }, outputs: { closeAlert: "closeAlert", clickLink: "clickLink", clickAction: "clickAction" }, ngImport: i0, template: "<div class=\"alert-container\" role=\"alert\" [ngClass]=\"type\">\n <ng-container [ngSwitch]=\"type\">\n <ng-container\n *ngSwitchCase=\"'success'\"\n [ngTemplateOutlet]=\"checkMark\"\n ></ng-container>\n <ng-container\n *ngSwitchCase=\"'information'\"\n [ngTemplateOutlet]=\"infoSquare\"\n ></ng-container>\n <ng-container\n *ngSwitchDefault\n [ngTemplateOutlet]=\"exclamationSquare\"\n ></ng-container>\n </ng-container>\n <div>\n <h3 *ngIf=\"title\">{{ title }}</h3>\n <p *ngIf=\"body\">\n {{ body }}&nbsp;<a\n *ngIf=\"linkText\"\n [href]=\"linkHref\"\n (click)=\"onLink($event)\"\n >{{ linkText }}</a\n >\n </p>\n </div>\n <button\n *ngIf=\"closable && !actionText\"\n class=\"close\"\n type=\"button\"\n (click)=\"onClose($event)\"\n >\n <i></i>\n </button>\n <footer *ngIf=\"actionText && !closable\">\n <button type=\"button\" (click)=\"onAction($event)\">\n {{ actionText }}\n </button>\n </footer>\n</div>\n\n<ng-template #checkMark>\n <i>\n <svg\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M17.6203 6.60836L9.40014 14.8285L6.37976 11.8081C6.23332 11.6617 5.99588 11.6617 5.84942 11.8081L4.96554 12.692C4.8191 12.8384 4.8191 13.0759 4.96554 13.2223L9.13495 17.3917C9.28138 17.5382 9.51882 17.5382 9.66529 17.3917L19.0344 8.02258C19.1809 7.87614 19.1809 7.63871 19.0344 7.49224L18.1506 6.60836C18.0041 6.46193 17.7667 6.46193 17.6203 6.60836Z\"\n fill=\"white\"\n ></path>\n </svg>\n </i>\n</ng-template>\n<ng-template #infoSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM12 7.07143C12.8284 7.07143 13.5 7.743 13.5 8.57143C13.5 9.39986 12.8284 10.0714 12 10.0714C11.1716 10.0714 10.5 9.39986 10.5 8.57143C10.5 7.743 11.1716 7.07143 12 7.07143ZM14 16.1429C14 16.3795 13.8081 16.5714 13.5714 16.5714H10.4286C10.1919 16.5714 10 16.3795 10 16.1429V15.2857C10 15.049 10.1919 14.8571 10.4286 14.8571H10.8571V12.5714H10.4286C10.1919 12.5714 10 12.3795 10 12.1429V11.2857C10 11.049 10.1919 10.8571 10.4286 10.8571H12.7143C12.951 10.8571 13.1429 11.049 13.1429 11.2857V14.8571H13.5714C13.8081 14.8571 14 15.049 14 15.2857V16.1429Z\"\n fill=\"#333333\"\n />\n </svg>\n </i>\n</ng-template>\n<ng-template #exclamationSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM10.8682 7.42857H13.1318C13.3777 7.42857 13.5731 7.635 13.5597 7.8805L13.2948 12.7376C13.2824 12.9649 13.0945 13.1429 12.8669 13.1429H11.1331C10.9055 13.1429 10.7176 12.9649 10.7052 12.7376L10.4402 7.8805C10.4269 7.635 10.6223 7.42857 10.8682 7.42857ZM12 17.0714C11.0927 17.0714 10.3571 16.3359 10.3571 15.4286C10.3571 14.5213 11.0927 13.7857 12 13.7857C12.9073 13.7857 13.6429 14.5213 13.6429 15.4286C13.6429 16.3359 12.9073 17.0714 12 17.0714Z\"\n fill=\"currentColor\"\n />\n </svg>\n </i>\n</ng-template>\n", styles: ["div[role=alert],.alert-ribbon{--background: hsl(var(--sg-intent-neutral-hsl));--color: var(--text-primary-color);--border-color: var(--text-primary-color);background:var(--background);border-radius:0;border:solid 1px var(--border-color);color:var(--color);padding:1rem;display:inline-grid;grid-template-columns:auto 1fr auto;grid-template-rows:min-content 1fr;grid-template-areas:\"icon content dismiss\" \"footer footer footer\"}@media (min-width: 36em){div[role=alert],.alert-ribbon{grid-template-areas:\"icon content dismiss\" \"icon content footer\"}}div[role=alert]>i,.alert-ribbon>i{display:block;width:1.5rem;height:1.5rem;margin-inline-end:.5rem;grid-area:icon}div[role=alert]>i svg>*,.alert-ribbon>i svg>*{fill:var(--text-primary-color)}div[role=alert]>div:not(.alert-ribbon__footer),div[role=alert] .alert-ribbon__content,.alert-ribbon>div:not(.alert-ribbon__footer),.alert-ribbon .alert-ribbon__content{grid-area:content;max-width:75ch}div[role=alert]>div:not(.alert-ribbon__footer):has(+button),div[role=alert] .alert-ribbon__content:has(+button),.alert-ribbon>div:not(.alert-ribbon__footer):has(+button),.alert-ribbon .alert-ribbon__content:has(+button){padding-right:.5rem}div[role=alert]>div:not(.alert-ribbon__footer)>h1,div[role=alert]>div:not(.alert-ribbon__footer) h2,div[role=alert]>div:not(.alert-ribbon__footer) h3,div[role=alert]>div:not(.alert-ribbon__footer) h4,div[role=alert]>div:not(.alert-ribbon__footer) h5,div[role=alert]>div:not(.alert-ribbon__footer) .header,div[role=alert] .alert-ribbon__content>h1,div[role=alert] .alert-ribbon__content h2,div[role=alert] .alert-ribbon__content h3,div[role=alert] .alert-ribbon__content h4,div[role=alert] .alert-ribbon__content h5,div[role=alert] .alert-ribbon__content .header,.alert-ribbon>div:not(.alert-ribbon__footer)>h1,.alert-ribbon>div:not(.alert-ribbon__footer) h2,.alert-ribbon>div:not(.alert-ribbon__footer) h3,.alert-ribbon>div:not(.alert-ribbon__footer) h4,.alert-ribbon>div:not(.alert-ribbon__footer) h5,.alert-ribbon>div:not(.alert-ribbon__footer) .header,.alert-ribbon .alert-ribbon__content>h1,.alert-ribbon .alert-ribbon__content h2,.alert-ribbon .alert-ribbon__content h3,.alert-ribbon .alert-ribbon__content h4,.alert-ribbon .alert-ribbon__content h5,.alert-ribbon .alert-ribbon__content .header{display:inline;font-size:1rem;font-weight:500;line-height:1.5rem;margin-right:.25rem}div[role=alert]>div:not(.alert-ribbon__footer)>p,div[role=alert] .alert-ribbon__content>p,.alert-ribbon>div:not(.alert-ribbon__footer)>p,.alert-ribbon .alert-ribbon__content>p{display:inline;line-height:1.5rem;margin-bottom:0;margin-top:0}div[role=alert]>div:not(.alert-ribbon__footer)>p a,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),div[role=alert] .alert-ribbon__content>p a,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]),.alert-ribbon>div:not(.alert-ribbon__footer)>p a,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),.alert-ribbon .alert-ribbon__content>p a,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]){color:var(--color)}div[role=alert]>div:not(.alert-ribbon__footer)>p a:hover,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,div[role=alert] .alert-ribbon__content>p a:hover,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon .alert-ribbon__content>p a:hover,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover{color:var(--color)}div[role=alert] button.close,.alert-ribbon button.close{grid-area:dismiss;justify-self:flex-end;margin:-.5rem -.375rem 0 .375rem;background-color:transparent;--background-hsl: var(--sg-hsl-black);--color: var(--text-primary-color)}div[role=alert] button.close>i:after,div[role=alert] button.close>i:before,.alert-ribbon button.close>i:after,.alert-ribbon button.close>i:before{background-color:var(--color)}div[role=alert] button.close:hover>i:after,div[role=alert] button.close:hover>i:before,.alert-ribbon button.close:hover>i:after,.alert-ribbon button.close:hover>i:before{background-color:var(--color)}@media (min-width: 36em){div[role=alert] button.close+footer,div[role=alert] button.close .alert-ribbon__footer,.alert-ribbon button.close+footer,.alert-ribbon button.close .alert-ribbon__footer{margin-top:.75rem}}div[role=alert] a:link:focus:not(:focus-visible),.alert-ribbon a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert] a:link:focus,div[role=alert] a:link:focus-within,.alert-ribbon a:link:focus,.alert-ribbon a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert] a:link:not(.button,[aria-disabled]),.alert-ribbon a:link:not(.button,[aria-disabled]){color:var(--text-primary-color)}div[role=alert] a:link:not(.button,[aria-disabled]):hover,div[role=alert] a:link:not(.button,[aria-disabled]):focus,div[role=alert] a:link:not(.button,[aria-disabled]):visited,.alert-ribbon a:link:not(.button,[aria-disabled]):hover,.alert-ribbon a:link:not(.button,[aria-disabled]):focus,.alert-ribbon a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert] a,.alert-ribbon a{text-decoration:underline!important;transition:opacity .3s ease-in-out}div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{grid-area:footer;align-self:end}@media (max-width: 35.98em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-left:.75rem}}div[role=alert]>footer>a,div[role=alert] .alert-ribbon__footer>a,.alert-ribbon>footer>a,.alert-ribbon .alert-ribbon__footer>a{display:flex}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);min-height:2rem;padding:.4375rem .75rem;line-height:1.125rem}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 35.98em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-left:.75rem}}div[role=alert].info,.alert-ribbon.info{--background: hsl(var(--sg-intent-info-hsl));--color: hsl(var(--sg-intent-info-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info .close,.alert-ribbon.info .close{--color: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info i>svg>*,.alert-ribbon.info i>svg>*{fill:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].info a:link:focus:not(:focus-visible),.alert-ribbon.info a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].info a:link:focus,div[role=alert].info a:link:focus-within,.alert-ribbon.info a:link:focus,.alert-ribbon.info a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].info a:link:not(.button,[aria-disabled]),.alert-ribbon.info a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info a:link:not(.button,[aria-disabled]):hover,div[role=alert].info a:link:not(.button,[aria-disabled]):focus,div[role=alert].info a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.info a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.info a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.info a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].success,.alert-ribbon.success{--background: hsl(var(--sg-intent-success-hsl));--color: var(--gds-sys-color-text-inverted);--border-color: transparent;--gds-sys-color-focus-outline: var(--gds-sys-color-text-inverted)}div[role=alert].success .close,.alert-ribbon.success .close{--color: var(--gds-sys-color-text-inverted)}div[role=alert].success i>svg>*,.alert-ribbon.success i>svg>*{fill:var(--gds-sys-color-text-inverted)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].success a:link:focus:not(:focus-visible),.alert-ribbon.success a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].success a:link:focus,div[role=alert].success a:link:focus-within,.alert-ribbon.success a:link:focus,.alert-ribbon.success a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].success a:link:not(.button,[aria-disabled]),.alert-ribbon.success a:link:not(.button,[aria-disabled]){color:var(--gds-sys-color-text-inverted)}div[role=alert].success a:link:not(.button,[aria-disabled]):hover,div[role=alert].success a:link:not(.button,[aria-disabled]):focus,div[role=alert].success a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.success a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.success a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.success a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].warning,.alert-ribbon.warning{--background: hsl(var(--sg-intent-warning-hsl));--color: hsl(var(--sg-intent-warning-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning .close,.alert-ribbon.warning .close{--color: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning i>svg>*,.alert-ribbon.warning i>svg>*{fill:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].warning a:link:focus:not(:focus-visible),.alert-ribbon.warning a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].warning a:link:focus,div[role=alert].warning a:link:focus-within,.alert-ribbon.warning a:link:focus,.alert-ribbon.warning a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].warning a:link:not(.button,[aria-disabled]),.alert-ribbon.warning a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning a:link:not(.button,[aria-disabled]):hover,div[role=alert].warning a:link:not(.button,[aria-disabled]):focus,div[role=alert].warning a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].danger,.alert-ribbon.danger{--background: hsl(var(--sg-intent-critical-hsl));--color: hsl(var(--sg-intent-critical-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger .close,.alert-ribbon.danger .close{--color: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger i>svg>*,.alert-ribbon.danger i>svg>*{fill:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].danger a:link:focus:not(:focus-visible),.alert-ribbon.danger a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].danger a:link:focus,div[role=alert].danger a:link:focus-within,.alert-ribbon.danger a:link:focus,.alert-ribbon.danger a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].danger a:link:not(.button,[aria-disabled]),.alert-ribbon.danger a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger a:link:not(.button,[aria-disabled]):hover,div[role=alert].danger a:link:not(.button,[aria-disabled]):focus,div[role=alert].danger a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):visited{color:currentColor}.close{font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){.close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}.close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}.close:not(:disabled):not(.disabled)>div:after,.close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}.close:focus:not(:focus-visible){box-shadow:none;outline:0}.close:focus,.close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}.close>i:after,.close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}.close>i:after{transform:rotate(45deg)}.close>i:before{transform:rotate(-45deg)}.close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){.close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}.close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host{--sg-intent-neutral-hsl: 0deg, 0%, 91.3725490196%;--sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;--sg-intent-success-hsl-contrast: 0deg, 0%, 100%;--sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;--sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;--sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;--sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;--gds-ref-pallet-base000: hsl(0 0% 100%);--text-primary-color: #333;--sg-border-width: 1px;--sg-border-width-50: .5px;--sg-border-radius: .25rem;--gds-sys-color-font: #333;--sg-border-color: #868686}:host .alert-container{box-sizing:border-box;width:100%}:host .alert-container a{cursor:pointer}:host .alert-container button{font-size:1rem;font-family:inherit}:host .alert-container button:not(.close){padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}@media (max-width: 35.98em){:host .alert-container button:not(.close){min-width:100%}}@media screen and (-ms-high-contrast: active){:host .alert-container button:not(.close){border:2px solid currentcolor}}:host .alert-container button:not(.close).small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .alert-container button:not(.close).large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .alert-container button:not(.close):focus:not(:focus-visible){box-shadow:none;outline:0}:host .alert-container button:not(.close):focus,:host .alert-container button:not(.close):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .alert-container button:not(.close):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .alert-container button:not(.close)[aria-selected=true],:host .alert-container button:not(.close):active,:host .alert-container button:not(.close).active,:host .alert-container button:not(.close).active:hover,:host .alert-container button:not(.close):active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .alert-container button:not(.close):disabled,:host .alert-container button:not(.close).disabled,:host .alert-container button:not(.close)[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .alert-container button:not(.close):disabled::placeholder,:host .alert-container button:not(.close).disabled::placeholder,:host .alert-container button:not(.close)[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .alert-container .close{padding:0}:host .alert-container .close i{width:2rem;height:2rem;border-radius:50%}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }] }); }
143
143
  }
144
144
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertComponent, decorators: [{
145
145
  type: Component,
146
- args: [{ selector: 'nggv-alert', template: "<div class=\"alert-container\" role=\"alert\" [ngClass]=\"type\">\n <ng-container [ngSwitch]=\"type\">\n <ng-container\n *ngSwitchCase=\"'success'\"\n [ngTemplateOutlet]=\"checkMark\"\n ></ng-container>\n <ng-container\n *ngSwitchCase=\"'information'\"\n [ngTemplateOutlet]=\"infoSquare\"\n ></ng-container>\n <ng-container\n *ngSwitchDefault\n [ngTemplateOutlet]=\"exclamationSquare\"\n ></ng-container>\n </ng-container>\n <div>\n <h3 *ngIf=\"title\">{{ title }}</h3>\n <p *ngIf=\"body\">\n {{ body }}&nbsp;<a\n *ngIf=\"linkText\"\n [href]=\"linkHref\"\n (click)=\"onLink($event)\"\n >{{ linkText }}</a\n >\n </p>\n </div>\n <button\n *ngIf=\"closable && !actionText\"\n class=\"close\"\n type=\"button\"\n (click)=\"onClose($event)\"\n >\n <i></i>\n </button>\n <footer *ngIf=\"actionText && !closable\">\n <button type=\"button\" (click)=\"onAction($event)\">\n {{ actionText }}\n </button>\n </footer>\n</div>\n\n<ng-template #checkMark>\n <i>\n <svg\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M17.6203 6.60836L9.40014 14.8285L6.37976 11.8081C6.23332 11.6617 5.99588 11.6617 5.84942 11.8081L4.96554 12.692C4.8191 12.8384 4.8191 13.0759 4.96554 13.2223L9.13495 17.3917C9.28138 17.5382 9.51882 17.5382 9.66529 17.3917L19.0344 8.02258C19.1809 7.87614 19.1809 7.63871 19.0344 7.49224L18.1506 6.60836C18.0041 6.46193 17.7667 6.46193 17.6203 6.60836Z\"\n fill=\"white\"\n ></path>\n </svg>\n </i>\n</ng-template>\n<ng-template #infoSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM12 7.07143C12.8284 7.07143 13.5 7.743 13.5 8.57143C13.5 9.39986 12.8284 10.0714 12 10.0714C11.1716 10.0714 10.5 9.39986 10.5 8.57143C10.5 7.743 11.1716 7.07143 12 7.07143ZM14 16.1429C14 16.3795 13.8081 16.5714 13.5714 16.5714H10.4286C10.1919 16.5714 10 16.3795 10 16.1429V15.2857C10 15.049 10.1919 14.8571 10.4286 14.8571H10.8571V12.5714H10.4286C10.1919 12.5714 10 12.3795 10 12.1429V11.2857C10 11.049 10.1919 10.8571 10.4286 10.8571H12.7143C12.951 10.8571 13.1429 11.049 13.1429 11.2857V14.8571H13.5714C13.8081 14.8571 14 15.049 14 15.2857V16.1429Z\"\n fill=\"#333333\"\n />\n </svg>\n </i>\n</ng-template>\n<ng-template #exclamationSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM10.8682 7.42857H13.1318C13.3777 7.42857 13.5731 7.635 13.5597 7.8805L13.2948 12.7376C13.2824 12.9649 13.0945 13.1429 12.8669 13.1429H11.1331C10.9055 13.1429 10.7176 12.9649 10.7052 12.7376L10.4402 7.8805C10.4269 7.635 10.6223 7.42857 10.8682 7.42857ZM12 17.0714C11.0927 17.0714 10.3571 16.3359 10.3571 15.4286C10.3571 14.5213 11.0927 13.7857 12 13.7857C12.9073 13.7857 13.6429 14.5213 13.6429 15.4286C13.6429 16.3359 12.9073 17.0714 12 17.0714Z\"\n fill=\"currentColor\"\n />\n </svg>\n </i>\n</ng-template>\n", styles: ["div[role=alert],.alert-ribbon{--background: hsl(var(--sg-intent-neutral-hsl));--color: var(--text-primary-color);--border-color: var(--text-primary-color);background:var(--background);border-radius:0;border:solid 1px var(--border-color);color:var(--color);padding:1rem;display:inline-grid;grid-template-columns:auto 1fr auto;grid-template-rows:min-content 1fr;grid-template-areas:\"icon content dismiss\" \"footer footer footer\"}@media (min-width: 36em){div[role=alert],.alert-ribbon{grid-template-areas:\"icon content dismiss\" \"icon content footer\"}}div[role=alert]>i,.alert-ribbon>i{display:block;width:1.5rem;height:1.5rem;margin-inline-end:.5rem;grid-area:icon}div[role=alert]>i svg>*,.alert-ribbon>i svg>*{fill:var(--text-primary-color)}div[role=alert]>div:not(.alert-ribbon__footer),div[role=alert] .alert-ribbon__content,.alert-ribbon>div:not(.alert-ribbon__footer),.alert-ribbon .alert-ribbon__content{grid-area:content;max-width:75ch}div[role=alert]>div:not(.alert-ribbon__footer):has(+button),div[role=alert] .alert-ribbon__content:has(+button),.alert-ribbon>div:not(.alert-ribbon__footer):has(+button),.alert-ribbon .alert-ribbon__content:has(+button){padding-right:.5rem}div[role=alert]>div:not(.alert-ribbon__footer)>h1,div[role=alert]>div:not(.alert-ribbon__footer) h2,div[role=alert]>div:not(.alert-ribbon__footer) h3,div[role=alert]>div:not(.alert-ribbon__footer) h4,div[role=alert]>div:not(.alert-ribbon__footer) h5,div[role=alert]>div:not(.alert-ribbon__footer) .header,div[role=alert] .alert-ribbon__content>h1,div[role=alert] .alert-ribbon__content h2,div[role=alert] .alert-ribbon__content h3,div[role=alert] .alert-ribbon__content h4,div[role=alert] .alert-ribbon__content h5,div[role=alert] .alert-ribbon__content .header,.alert-ribbon>div:not(.alert-ribbon__footer)>h1,.alert-ribbon>div:not(.alert-ribbon__footer) h2,.alert-ribbon>div:not(.alert-ribbon__footer) h3,.alert-ribbon>div:not(.alert-ribbon__footer) h4,.alert-ribbon>div:not(.alert-ribbon__footer) h5,.alert-ribbon>div:not(.alert-ribbon__footer) .header,.alert-ribbon .alert-ribbon__content>h1,.alert-ribbon .alert-ribbon__content h2,.alert-ribbon .alert-ribbon__content h3,.alert-ribbon .alert-ribbon__content h4,.alert-ribbon .alert-ribbon__content h5,.alert-ribbon .alert-ribbon__content .header{display:inline;font-size:1rem;font-weight:500;line-height:1.5rem;margin-right:.25rem}div[role=alert]>div:not(.alert-ribbon__footer)>p,div[role=alert] .alert-ribbon__content>p,.alert-ribbon>div:not(.alert-ribbon__footer)>p,.alert-ribbon .alert-ribbon__content>p{display:inline;line-height:1.5rem;margin-bottom:0;margin-top:0}div[role=alert]>div:not(.alert-ribbon__footer)>p a,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),div[role=alert] .alert-ribbon__content>p a,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]),.alert-ribbon>div:not(.alert-ribbon__footer)>p a,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),.alert-ribbon .alert-ribbon__content>p a,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]){color:var(--color)}div[role=alert]>div:not(.alert-ribbon__footer)>p a:hover,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,div[role=alert] .alert-ribbon__content>p a:hover,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon .alert-ribbon__content>p a:hover,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover{color:var(--color)}div[role=alert] button.close,.alert-ribbon button.close{grid-area:dismiss;justify-self:flex-end;margin:-.5rem -.375rem 0 .375rem;background-color:transparent;--background-hsl: var(--sg-hsl-black);--color: var(--text-primary-color)}div[role=alert] button.close>i:after,div[role=alert] button.close>i:before,.alert-ribbon button.close>i:after,.alert-ribbon button.close>i:before{background-color:var(--color)}div[role=alert] button.close:hover>i:after,div[role=alert] button.close:hover>i:before,.alert-ribbon button.close:hover>i:after,.alert-ribbon button.close:hover>i:before{background-color:var(--color)}@media (min-width: 36em){div[role=alert] button.close+footer,div[role=alert] button.close .alert-ribbon__footer,.alert-ribbon button.close+footer,.alert-ribbon button.close .alert-ribbon__footer{margin-top:.75rem}}div[role=alert] a:link:focus:not(:focus-visible),.alert-ribbon a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert] a:link:focus,div[role=alert] a:link:focus-within,.alert-ribbon a:link:focus,.alert-ribbon a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert] a:link:not(.button,[aria-disabled]),.alert-ribbon a:link:not(.button,[aria-disabled]){color:var(--text-primary-color)}div[role=alert] a:link:not(.button,[aria-disabled]):hover,div[role=alert] a:link:not(.button,[aria-disabled]):focus,div[role=alert] a:link:not(.button,[aria-disabled]):visited,.alert-ribbon a:link:not(.button,[aria-disabled]):hover,.alert-ribbon a:link:not(.button,[aria-disabled]):focus,.alert-ribbon a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert] a,.alert-ribbon a{text-decoration:underline!important;transition:opacity .3s ease-in-out}div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{grid-area:footer;align-self:end}@media (max-width: 35.98em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-left:.75rem}}div[role=alert]>footer>a,div[role=alert] .alert-ribbon__footer>a,.alert-ribbon>footer>a,.alert-ribbon .alert-ribbon__footer>a{display:flex}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);min-height:2rem;padding:.4375rem .75rem;line-height:1.125rem}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 35.98em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-left:.75rem}}div[role=alert].info,.alert-ribbon.info{--background: hsl(var(--sg-intent-info-hsl));--color: hsl(var(--sg-intent-info-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info .close,.alert-ribbon.info .close{--color: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info i>svg>*,.alert-ribbon.info i>svg>*{fill:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].info a:link:focus:not(:focus-visible),.alert-ribbon.info a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].info a:link:focus,div[role=alert].info a:link:focus-within,.alert-ribbon.info a:link:focus,.alert-ribbon.info a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].info a:link:not(.button,[aria-disabled]),.alert-ribbon.info a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info a:link:not(.button,[aria-disabled]):hover,div[role=alert].info a:link:not(.button,[aria-disabled]):focus,div[role=alert].info a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.info a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.info a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.info a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].success,.alert-ribbon.success{--background: hsl(var(--sg-intent-success-hsl));--color: var(--gds-sys-color-text-inverted);--border-color: transparent;--gds-sys-color-focus-outline: var(--gds-sys-color-text-inverted)}div[role=alert].success .close,.alert-ribbon.success .close{--color: var(--gds-sys-color-text-inverted)}div[role=alert].success i>svg>*,.alert-ribbon.success i>svg>*{fill:var(--gds-sys-color-text-inverted)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].success a:link:focus:not(:focus-visible),.alert-ribbon.success a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].success a:link:focus,div[role=alert].success a:link:focus-within,.alert-ribbon.success a:link:focus,.alert-ribbon.success a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].success a:link:not(.button,[aria-disabled]),.alert-ribbon.success a:link:not(.button,[aria-disabled]){color:var(--gds-sys-color-text-inverted)}div[role=alert].success a:link:not(.button,[aria-disabled]):hover,div[role=alert].success a:link:not(.button,[aria-disabled]):focus,div[role=alert].success a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.success a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.success a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.success a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].warning,.alert-ribbon.warning{--background: hsl(var(--sg-intent-warning-hsl));--color: hsl(var(--sg-intent-warning-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning .close,.alert-ribbon.warning .close{--color: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning i>svg>*,.alert-ribbon.warning i>svg>*{fill:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].warning a:link:focus:not(:focus-visible),.alert-ribbon.warning a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].warning a:link:focus,div[role=alert].warning a:link:focus-within,.alert-ribbon.warning a:link:focus,.alert-ribbon.warning a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].warning a:link:not(.button,[aria-disabled]),.alert-ribbon.warning a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning a:link:not(.button,[aria-disabled]):hover,div[role=alert].warning a:link:not(.button,[aria-disabled]):focus,div[role=alert].warning a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].danger,.alert-ribbon.danger{--background: hsl(var(--sg-intent-critical-hsl));--color: hsl(var(--sg-intent-critical-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger .close,.alert-ribbon.danger .close{--color: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger i>svg>*,.alert-ribbon.danger i>svg>*{fill:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].danger a:link:focus:not(:focus-visible),.alert-ribbon.danger a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].danger a:link:focus,div[role=alert].danger a:link:focus-within,.alert-ribbon.danger a:link:focus,.alert-ribbon.danger a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].danger a:link:not(.button,[aria-disabled]),.alert-ribbon.danger a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger a:link:not(.button,[aria-disabled]):hover,div[role=alert].danger a:link:not(.button,[aria-disabled]):focus,div[role=alert].danger a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):visited{color:currentColor}.close{font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){.close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}.close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}.close:not(:disabled):not(.disabled)>div:after,.close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}.close:focus:not(:focus-visible){box-shadow:none;outline:0}.close:focus,.close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}.close>i:after,.close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}.close>i:after{transform:rotate(45deg)}.close>i:before{transform:rotate(-45deg)}.close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){.close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}.close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host{--sg-intent-neutral-hsl: 0deg, 0%, 91.3725490196%;--sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;--sg-intent-success-hsl-contrast: 0deg, 0%, 100%;--sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;--sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;--sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;--sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;--gds-ref-pallet-base000: hsl(0 0% 100%);--text-primary-color: #333;--sg-border-width: 1px;--sg-border-width-50: .5px;--sg-border-radius: .25rem;--gds-sys-color-font: #333;--sg-border-color: #868686}:host .alert-container{box-sizing:border-box;width:100%}:host .alert-container a{cursor:pointer}:host .alert-container button{font-size:1rem;font-family:inherit}:host .alert-container button:not(.close){padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}@media (max-width: 35.98em){:host .alert-container button:not(.close){min-width:100%}}@media screen and (-ms-high-contrast: active){:host .alert-container button:not(.close){border:2px solid currentcolor}}:host .alert-container button:not(.close).small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .alert-container button:not(.close).large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .alert-container button:not(.close):focus:not(:focus-visible){box-shadow:none;outline:0}:host .alert-container button:not(.close):focus,:host .alert-container button:not(.close):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .alert-container button:not(.close):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .alert-container button:not(.close)[aria-selected=true],:host .alert-container button:not(.close):active,:host .alert-container button:not(.close).active,:host .alert-container button:not(.close).active:hover,:host .alert-container button:not(.close):active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .alert-container button:not(.close):disabled,:host .alert-container button:not(.close).disabled,:host .alert-container button:not(.close)[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .alert-container button:not(.close):disabled::placeholder,:host .alert-container button:not(.close).disabled::placeholder,:host .alert-container button:not(.close)[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .alert-container .close{padding:0}:host .alert-container .close i{width:2rem;height:2rem;border-radius:50%}\n"] }]
146
+ args: [{ selector: 'nggv-alert', template: "<div class=\"alert-container\" role=\"alert\" [ngClass]=\"type\">\n <ng-container [ngSwitch]=\"type\">\n <ng-container\n *ngSwitchCase=\"'success'\"\n [ngTemplateOutlet]=\"checkMark\"\n ></ng-container>\n <ng-container\n *ngSwitchCase=\"'information'\"\n [ngTemplateOutlet]=\"infoSquare\"\n ></ng-container>\n <ng-container\n *ngSwitchDefault\n [ngTemplateOutlet]=\"exclamationSquare\"\n ></ng-container>\n </ng-container>\n <div>\n <h3 *ngIf=\"title\">{{ title }}</h3>\n <p *ngIf=\"body\">\n {{ body }}&nbsp;<a\n *ngIf=\"linkText\"\n [href]=\"linkHref\"\n (click)=\"onLink($event)\"\n >{{ linkText }}</a\n >\n </p>\n </div>\n <button\n *ngIf=\"closable && !actionText\"\n class=\"close\"\n type=\"button\"\n (click)=\"onClose($event)\"\n >\n <i></i>\n </button>\n <footer *ngIf=\"actionText && !closable\">\n <button type=\"button\" (click)=\"onAction($event)\">\n {{ actionText }}\n </button>\n </footer>\n</div>\n\n<ng-template #checkMark>\n <i>\n <svg\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M17.6203 6.60836L9.40014 14.8285L6.37976 11.8081C6.23332 11.6617 5.99588 11.6617 5.84942 11.8081L4.96554 12.692C4.8191 12.8384 4.8191 13.0759 4.96554 13.2223L9.13495 17.3917C9.28138 17.5382 9.51882 17.5382 9.66529 17.3917L19.0344 8.02258C19.1809 7.87614 19.1809 7.63871 19.0344 7.49224L18.1506 6.60836C18.0041 6.46193 17.7667 6.46193 17.6203 6.60836Z\"\n fill=\"white\"\n ></path>\n </svg>\n </i>\n</ng-template>\n<ng-template #infoSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM12 7.07143C12.8284 7.07143 13.5 7.743 13.5 8.57143C13.5 9.39986 12.8284 10.0714 12 10.0714C11.1716 10.0714 10.5 9.39986 10.5 8.57143C10.5 7.743 11.1716 7.07143 12 7.07143ZM14 16.1429C14 16.3795 13.8081 16.5714 13.5714 16.5714H10.4286C10.1919 16.5714 10 16.3795 10 16.1429V15.2857C10 15.049 10.1919 14.8571 10.4286 14.8571H10.8571V12.5714H10.4286C10.1919 12.5714 10 12.3795 10 12.1429V11.2857C10 11.049 10.1919 10.8571 10.4286 10.8571H12.7143C12.951 10.8571 13.1429 11.049 13.1429 11.2857V14.8571H13.5714C13.8081 14.8571 14 15.049 14 15.2857V16.1429Z\"\n fill=\"#333333\"\n />\n </svg>\n </i>\n</ng-template>\n<ng-template #exclamationSquare>\n <i>\n <svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.2857 4H5.71429C4.7675 4 4 4.7675 4 5.71429V18.2857C4 19.2325 4.7675 20 5.71429 20H18.2857C19.2325 20 20 19.2325 20 18.2857V5.71429C20 4.7675 19.2325 4 18.2857 4ZM10.8682 7.42857H13.1318C13.3777 7.42857 13.5731 7.635 13.5597 7.8805L13.2948 12.7376C13.2824 12.9649 13.0945 13.1429 12.8669 13.1429H11.1331C10.9055 13.1429 10.7176 12.9649 10.7052 12.7376L10.4402 7.8805C10.4269 7.635 10.6223 7.42857 10.8682 7.42857ZM12 17.0714C11.0927 17.0714 10.3571 16.3359 10.3571 15.4286C10.3571 14.5213 11.0927 13.7857 12 13.7857C12.9073 13.7857 13.6429 14.5213 13.6429 15.4286C13.6429 16.3359 12.9073 17.0714 12 17.0714Z\"\n fill=\"currentColor\"\n />\n </svg>\n </i>\n</ng-template>\n", styles: ["div[role=alert],.alert-ribbon{--background: hsl(var(--sg-intent-neutral-hsl));--color: var(--text-primary-color);--border-color: var(--text-primary-color);background:var(--background);border-radius:0;border:solid 1px var(--border-color);color:var(--color);padding:1rem;display:inline-grid;grid-template-columns:auto 1fr auto;grid-template-rows:min-content 1fr;grid-template-areas:\"icon content dismiss\" \"footer footer footer\"}@media (min-width: 36em){div[role=alert],.alert-ribbon{grid-template-areas:\"icon content dismiss\" \"icon content footer\"}}div[role=alert]>i,.alert-ribbon>i{display:block;width:1.5rem;height:1.5rem;margin-inline-end:.5rem;grid-area:icon}div[role=alert]>i svg>*,.alert-ribbon>i svg>*{fill:var(--text-primary-color)}div[role=alert]>div:not(.alert-ribbon__footer),div[role=alert] .alert-ribbon__content,.alert-ribbon>div:not(.alert-ribbon__footer),.alert-ribbon .alert-ribbon__content{grid-area:content;max-width:75ch}div[role=alert]>div:not(.alert-ribbon__footer):has(+button),div[role=alert] .alert-ribbon__content:has(+button),.alert-ribbon>div:not(.alert-ribbon__footer):has(+button),.alert-ribbon .alert-ribbon__content:has(+button){padding-right:.5rem}div[role=alert]>div:not(.alert-ribbon__footer)>h1,div[role=alert]>div:not(.alert-ribbon__footer) h2,div[role=alert]>div:not(.alert-ribbon__footer) h3,div[role=alert]>div:not(.alert-ribbon__footer) h4,div[role=alert]>div:not(.alert-ribbon__footer) h5,div[role=alert]>div:not(.alert-ribbon__footer) .header,div[role=alert] .alert-ribbon__content>h1,div[role=alert] .alert-ribbon__content h2,div[role=alert] .alert-ribbon__content h3,div[role=alert] .alert-ribbon__content h4,div[role=alert] .alert-ribbon__content h5,div[role=alert] .alert-ribbon__content .header,.alert-ribbon>div:not(.alert-ribbon__footer)>h1,.alert-ribbon>div:not(.alert-ribbon__footer) h2,.alert-ribbon>div:not(.alert-ribbon__footer) h3,.alert-ribbon>div:not(.alert-ribbon__footer) h4,.alert-ribbon>div:not(.alert-ribbon__footer) h5,.alert-ribbon>div:not(.alert-ribbon__footer) .header,.alert-ribbon .alert-ribbon__content>h1,.alert-ribbon .alert-ribbon__content h2,.alert-ribbon .alert-ribbon__content h3,.alert-ribbon .alert-ribbon__content h4,.alert-ribbon .alert-ribbon__content h5,.alert-ribbon .alert-ribbon__content .header{display:inline;font-size:1rem;font-weight:500;line-height:1.5rem;margin-right:.25rem}div[role=alert]>div:not(.alert-ribbon__footer)>p,div[role=alert] .alert-ribbon__content>p,.alert-ribbon>div:not(.alert-ribbon__footer)>p,.alert-ribbon .alert-ribbon__content>p{display:inline;line-height:1.5rem;margin-bottom:0;margin-top:0}div[role=alert]>div:not(.alert-ribbon__footer)>p a,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),div[role=alert] .alert-ribbon__content>p a,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]),.alert-ribbon>div:not(.alert-ribbon__footer)>p a,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]),.alert-ribbon .alert-ribbon__content>p a,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]){color:var(--color)}div[role=alert]>div:not(.alert-ribbon__footer)>p a:hover,div[role=alert]>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,div[role=alert] .alert-ribbon__content>p a:hover,div[role=alert] .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:hover,.alert-ribbon>div:not(.alert-ribbon__footer)>p a:visited:not(.button,[role=tab]):hover,.alert-ribbon .alert-ribbon__content>p a:hover,.alert-ribbon .alert-ribbon__content>p a:visited:not(.button,[role=tab]):hover{color:var(--color)}div[role=alert] button.close,.alert-ribbon button.close{grid-area:dismiss;justify-self:flex-end;margin:-.5rem -.375rem 0 .375rem;background-color:transparent;--background-hsl: var(--sg-hsl-black);--color: var(--text-primary-color)}div[role=alert] button.close>i:after,div[role=alert] button.close>i:before,.alert-ribbon button.close>i:after,.alert-ribbon button.close>i:before{background-color:var(--color)}div[role=alert] button.close:hover>i:after,div[role=alert] button.close:hover>i:before,.alert-ribbon button.close:hover>i:after,.alert-ribbon button.close:hover>i:before{background-color:var(--color)}@media (min-width: 36em){div[role=alert] button.close+footer,div[role=alert] button.close .alert-ribbon__footer,.alert-ribbon button.close+footer,.alert-ribbon button.close .alert-ribbon__footer{margin-top:.75rem}}div[role=alert] a:link:focus:not(:focus-visible),.alert-ribbon a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert] a:link:focus,div[role=alert] a:link:focus-within,.alert-ribbon a:link:focus,.alert-ribbon a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert] a:link:not(.button,[aria-disabled]),.alert-ribbon a:link:not(.button,[aria-disabled]){color:var(--text-primary-color)}div[role=alert] a:link:not(.button,[aria-disabled]):hover,div[role=alert] a:link:not(.button,[aria-disabled]):focus,div[role=alert] a:link:not(.button,[aria-disabled]):visited,.alert-ribbon a:link:not(.button,[aria-disabled]):hover,.alert-ribbon a:link:not(.button,[aria-disabled]):focus,.alert-ribbon a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert] a,.alert-ribbon a{text-decoration:underline!important;transition:opacity .3s ease-in-out}div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{grid-area:footer;align-self:end}@media (max-width: 35.98em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer,div[role=alert] .alert-ribbon__footer,.alert-ribbon>footer,.alert-ribbon .alert-ribbon__footer{margin-left:.75rem}}div[role=alert]>footer>a,div[role=alert] .alert-ribbon__footer>a,.alert-ribbon>footer>a,.alert-ribbon .alert-ribbon__footer>a{display:flex}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);min-height:2rem;padding:.4375rem .75rem;line-height:1.125rem}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert]>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert] .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 35.98em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-top:.75rem}}@media (min-width: 36em){div[role=alert]>footer>a+a,div[role=alert]>footer>a+button,div[role=alert]>footer>a+.button,div[role=alert]>footer>button+a,div[role=alert]>footer>button+button,div[role=alert]>footer>button+.button,div[role=alert]>footer>button[type=button]+a,div[role=alert]>footer>button[type=button]+button,div[role=alert]>footer>button[type=button]+.button,div[role=alert]>footer>.button+a,div[role=alert]>footer>.button+button,div[role=alert]>footer>.button+.button,div[role=alert] .alert-ribbon__footer>a+a,div[role=alert] .alert-ribbon__footer>a+button,div[role=alert] .alert-ribbon__footer>a+.button,div[role=alert] .alert-ribbon__footer>button+a,div[role=alert] .alert-ribbon__footer>button+button,div[role=alert] .alert-ribbon__footer>button+.button,div[role=alert] .alert-ribbon__footer>button[type=button]+a,div[role=alert] .alert-ribbon__footer>button[type=button]+button,div[role=alert] .alert-ribbon__footer>button[type=button]+.button,div[role=alert] .alert-ribbon__footer>.button+a,div[role=alert] .alert-ribbon__footer>.button+button,div[role=alert] .alert-ribbon__footer>.button+.button,.alert-ribbon>footer>a+a,.alert-ribbon>footer>a+button,.alert-ribbon>footer>a+.button,.alert-ribbon>footer>button+a,.alert-ribbon>footer>button+button,.alert-ribbon>footer>button+.button,.alert-ribbon>footer>button[type=button]+a,.alert-ribbon>footer>button[type=button]+button,.alert-ribbon>footer>button[type=button]+.button,.alert-ribbon>footer>.button+a,.alert-ribbon>footer>.button+button,.alert-ribbon>footer>.button+.button,.alert-ribbon .alert-ribbon__footer>a+a,.alert-ribbon .alert-ribbon__footer>a+button,.alert-ribbon .alert-ribbon__footer>a+.button,.alert-ribbon .alert-ribbon__footer>button+a,.alert-ribbon .alert-ribbon__footer>button+button,.alert-ribbon .alert-ribbon__footer>button+.button,.alert-ribbon .alert-ribbon__footer>button[type=button]+a,.alert-ribbon .alert-ribbon__footer>button[type=button]+button,.alert-ribbon .alert-ribbon__footer>button[type=button]+.button,.alert-ribbon .alert-ribbon__footer>.button+a,.alert-ribbon .alert-ribbon__footer>.button+button,.alert-ribbon .alert-ribbon__footer>.button+.button{margin-left:.75rem}}div[role=alert].info,.alert-ribbon.info{--background: hsl(var(--sg-intent-info-hsl));--color: hsl(var(--sg-intent-info-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info .close,.alert-ribbon.info .close{--color: hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info i>svg>*,.alert-ribbon.info i>svg>*{fill:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.info .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].info a:link:focus:not(:focus-visible),.alert-ribbon.info a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].info a:link:focus,div[role=alert].info a:link:focus-within,.alert-ribbon.info a:link:focus,.alert-ribbon.info a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].info a:link:not(.button,[aria-disabled]),.alert-ribbon.info a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-info-hsl-contrast))}div[role=alert].info a:link:not(.button,[aria-disabled]):hover,div[role=alert].info a:link:not(.button,[aria-disabled]):focus,div[role=alert].info a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.info a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.info a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.info a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].success,.alert-ribbon.success{--background: hsl(var(--sg-intent-success-hsl));--color: var(--gds-sys-color-text-inverted);--border-color: transparent;--gds-sys-color-focus-outline: var(--gds-sys-color-text-inverted)}div[role=alert].success .close,.alert-ribbon.success .close{--color: var(--gds-sys-color-text-inverted)}div[role=alert].success i>svg>*,.alert-ribbon.success i>svg>*{fill:var(--gds-sys-color-text-inverted)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.success .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].success a:link:focus:not(:focus-visible),.alert-ribbon.success a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].success a:link:focus,div[role=alert].success a:link:focus-within,.alert-ribbon.success a:link:focus,.alert-ribbon.success a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].success a:link:not(.button,[aria-disabled]),.alert-ribbon.success a:link:not(.button,[aria-disabled]){color:var(--gds-sys-color-text-inverted)}div[role=alert].success a:link:not(.button,[aria-disabled]):hover,div[role=alert].success a:link:not(.button,[aria-disabled]):focus,div[role=alert].success a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.success a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.success a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.success a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].warning,.alert-ribbon.warning{--background: hsl(var(--sg-intent-warning-hsl));--color: hsl(var(--sg-intent-warning-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning .close,.alert-ribbon.warning .close{--color: hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning i>svg>*,.alert-ribbon.warning i>svg>*{fill:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.warning .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].warning a:link:focus:not(:focus-visible),.alert-ribbon.warning a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].warning a:link:focus,div[role=alert].warning a:link:focus-within,.alert-ribbon.warning a:link:focus,.alert-ribbon.warning a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].warning a:link:not(.button,[aria-disabled]),.alert-ribbon.warning a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-warning-hsl-contrast))}div[role=alert].warning a:link:not(.button,[aria-disabled]):hover,div[role=alert].warning a:link:not(.button,[aria-disabled]):focus,div[role=alert].warning a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.warning a:link:not(.button,[aria-disabled]):visited{color:currentColor}div[role=alert].danger,.alert-ribbon.danger{--background: hsl(var(--sg-intent-critical-hsl));--color: hsl(var(--sg-intent-critical-hsl-contrast));--border-color: transparent;--gds-sys-color-focus-outline: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger .close,.alert-ribbon.danger .close{--color: hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger i>svg>*,.alert-ribbon.danger i>svg>*{fill:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]),.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]){transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-selected]:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).active:hover,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):active:hover{opacity:.9}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true],.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,div[role=alert].danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger>footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>a:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>button[type=button]:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]):disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled]).disabled::placeholder,.alert-ribbon.danger .alert-ribbon__footer>.button:not(.primary,.ghost,.close,.link,[type=submit],:disabled,.disabled,[aria-disabled])[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}div[role=alert].danger a:link:focus:not(:focus-visible),.alert-ribbon.danger a:link:focus:not(:focus-visible){box-shadow:none;outline:0}div[role=alert].danger a:link:focus,div[role=alert].danger a:link:focus-within,.alert-ribbon.danger a:link:focus,.alert-ribbon.danger a:link:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}div[role=alert].danger a:link:not(.button,[aria-disabled]),.alert-ribbon.danger a:link:not(.button,[aria-disabled]){color:hsl(var(--sg-intent-critical-hsl-contrast))}div[role=alert].danger a:link:not(.button,[aria-disabled]):hover,div[role=alert].danger a:link:not(.button,[aria-disabled]):focus,div[role=alert].danger a:link:not(.button,[aria-disabled]):visited,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):hover,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):focus,.alert-ribbon.danger a:link:not(.button,[aria-disabled]):visited{color:currentColor}.close{font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){.close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}.close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}.close:not(:disabled):not(.disabled)>div:after,.close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}.close:focus:not(:focus-visible){box-shadow:none;outline:0}.close:focus,.close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}.close>i:after,.close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}.close>i:after{transform:rotate(45deg)}.close>i:before{transform:rotate(-45deg)}.close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){.close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}.close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host{--sg-intent-neutral-hsl: 0deg, 0%, 91.3725490196%;--sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;--sg-intent-success-hsl-contrast: 0deg, 0%, 100%;--sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;--sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;--sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;--sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;--gds-ref-pallet-base000: hsl(0 0% 100%);--text-primary-color: #333;--sg-border-width: 1px;--sg-border-width-50: .5px;--sg-border-radius: .25rem;--gds-sys-color-font: #333;--sg-border-color: #868686}:host .alert-container{box-sizing:border-box;width:100%}:host .alert-container a{cursor:pointer}:host .alert-container button{font-size:1rem;font-family:inherit}:host .alert-container button:not(.close){padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}@media (max-width: 35.98em){:host .alert-container button:not(.close){min-width:100%}}@media screen and (-ms-high-contrast: active){:host .alert-container button:not(.close){border:2px solid currentcolor}}:host .alert-container button:not(.close).small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .alert-container button:not(.close).large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .alert-container button:not(.close):focus:not(:focus-visible){box-shadow:none;outline:0}:host .alert-container button:not(.close):focus,:host .alert-container button:not(.close):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .alert-container button:not(.close):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .alert-container button:not(.close)[aria-selected=true],:host .alert-container button:not(.close):active,:host .alert-container button:not(.close).active,:host .alert-container button:not(.close).active:hover,:host .alert-container button:not(.close):active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .alert-container button:not(.close):disabled,:host .alert-container button:not(.close).disabled,:host .alert-container button:not(.close)[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .alert-container button:not(.close):disabled::placeholder,:host .alert-container button:not(.close).disabled::placeholder,:host .alert-container button:not(.close)[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .alert-container .close{padding:0}:host .alert-container .close i{width:2rem;height:2rem;border-radius:50%}\n"] }]
147
147
  }], propDecorators: { type: [{
148
148
  type: Input
149
149
  }], title: [{
@@ -589,11 +589,11 @@ class NggvButtonComponent extends NggvBaseControlValueAccessorComponent$1 {
589
589
  this.nggvClick.emit(event);
590
590
  }
591
591
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvButtonComponent, deps: [{ token: i1$1.NgControl, optional: true, self: true }, { token: TRANSLOCO_SCOPE, optional: true }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
592
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvButtonComponent, selector: "nggv-button", inputs: { thook: "thook", type: "type", buttonStyle: "buttonStyle", small: "small", href: "href" }, outputs: { nggvClick: "nggvClick" }, host: { properties: { "attr.data-thook": "this.thook" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<button\n #input\n [ngClass]=\"buttonClasses\"\n [id]=\"id + '-button'\"\n [attr.name]=\"name\"\n [attr.value]=\"value\"\n [type]=\"type\"\n [autofocus]=\"autofocus\"\n [disabled]=\"disabled\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type !== 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</button>\n\n<a\n #input\n [ngClass]=\"buttonClasses\"\n role=\"button\"\n [id]=\"id + '-link'\"\n [routerLink]=\"href\"\n [external]=\"external\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type === 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</a>\n\n<ng-template #contentRef>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-border-color: #868686;--gds-sys-color-focus-outline: #1a1a1a}:host button,:host a{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host button:focus:not(:focus-visible),:host a:focus:not(:focus-visible){box-shadow:none;outline:0}:host button:focus,:host button:focus-visible,:host a:focus,:host a:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host button,:host a{min-width:100%}}@media screen and (-ms-high-contrast: active){:host button,:host a{border:2px solid currentcolor}}:host button.small,:host a.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host button.large,:host a.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .primary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .primary[aria-selected=true],:host .primary:active,:host .primary.active,:host .primary.active:hover,:host .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .primary:disabled,:host .primary.disabled,:host .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .primary:disabled::placeholder,:host .primary.disabled::placeholder,:host .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .secondary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .secondary:focus,:host .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .secondary[aria-selected=true],:host .secondary:active,:host .secondary.active,:host .secondary.active:hover,:host .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .secondary:disabled,:host .secondary.disabled,:host .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .secondary:disabled::placeholder,:host .secondary.disabled::placeholder,:host .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .tertiary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:transparent;color:#007ac7;--color: rgb(0, 122, 199)}:host .tertiary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .tertiary:focus,:host .tertiary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .tertiary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .tertiary[aria-selected=true],:host .tertiary:active,:host .tertiary.active,:host .tertiary.active:hover,:host .tertiary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .tertiary:disabled,:host .tertiary.disabled,:host .tertiary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .tertiary:disabled::placeholder,:host .tertiary.disabled::placeholder,:host .tertiary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost-light{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}:host .ghost-light:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected=true],:host .ghost-light:active,:host .ghost-light.active,:host .ghost-light.active:hover,:host .ghost-light:active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected]:hover,:host .ghost-light.active:hover,:host .ghost-light:active:hover{opacity:.9}:host .ghost-light:focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}:host .ghost-light:disabled,:host .ghost-light.disabled,:host .ghost-light[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost-light:disabled::placeholder,:host .ghost-light.disabled::placeholder,:host .ghost-light[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}:host .ghost:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected=true],:host .ghost:active,:host .ghost.active,:host .ghost.active:hover,:host .ghost:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected]:hover,:host .ghost.active:hover,:host .ghost:active:hover{opacity:.9}:host .ghost:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .ghost:disabled,:host .ghost.disabled,:host .ghost[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost:disabled::placeholder,:host .ghost.disabled::placeholder,:host .ghost[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger.primary{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger.primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger.primary[aria-selected=true],:host .danger.primary:active,:host .danger.primary.active,:host .danger.primary.active:hover,:host .danger.primary:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger.primary[aria-selected]:hover,:host .danger.primary.active:hover,:host .danger.primary:active:hover{opacity:.9}:host .danger.primary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger.primary:focus,:host .danger.primary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .danger.primary:disabled,:host .danger.primary.disabled,:host .danger.primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .danger.primary:disabled::placeholder,:host .danger.primary.disabled::placeholder,:host .danger.primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger:not(.primary){color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger:not(.primary):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger:not(.primary)[aria-selected=true],:host .danger:not(.primary):active,:host .danger:not(.primary).active,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger:not(.primary)[aria-selected]:hover,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{opacity:.9}:host .danger:not(.primary):focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger:not(.primary):focus,:host .danger:not(.primary):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NggvExternalLinkDirective, selector: "a[routerLink]", inputs: ["external"] }, { kind: "directive", type: i1$2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] }); }
592
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvButtonComponent, selector: "nggv-button", inputs: { thook: "thook", type: "type", buttonStyle: "buttonStyle", small: "small", href: "href" }, outputs: { nggvClick: "nggvClick" }, host: { properties: { "attr.data-thook": "this.thook" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<button\n #input\n [ngClass]=\"buttonClasses\"\n [id]=\"id + '-button'\"\n [attr.name]=\"name\"\n [attr.value]=\"value\"\n [type]=\"type\"\n [autofocus]=\"autofocus\"\n [disabled]=\"disabled\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type !== 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</button>\n\n<a\n #input\n [ngClass]=\"buttonClasses\"\n role=\"button\"\n [id]=\"id + '-link'\"\n [routerLink]=\"href\"\n [external]=\"external\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type === 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</a>\n\n<ng-template #contentRef>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-border-color: #868686;--gds-sys-color-focus-outline: #1a1a1a}:host button,:host a{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host button:focus:not(:focus-visible),:host a:focus:not(:focus-visible){box-shadow:none;outline:0}:host button:focus,:host button:focus-visible,:host a:focus,:host a:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host button,:host a{min-width:100%}}@media screen and (-ms-high-contrast: active){:host button,:host a{border:2px solid currentcolor}}:host button.small,:host a.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host button.large,:host a.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .primary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .primary[aria-selected=true],:host .primary:active,:host .primary.active,:host .primary.active:hover,:host .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .primary:disabled,:host .primary.disabled,:host .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .primary:disabled::placeholder,:host .primary.disabled::placeholder,:host .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .secondary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .secondary:focus,:host .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .secondary[aria-selected=true],:host .secondary:active,:host .secondary.active,:host .secondary.active:hover,:host .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .secondary:disabled,:host .secondary.disabled,:host .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .secondary:disabled::placeholder,:host .secondary.disabled::placeholder,:host .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .tertiary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:transparent;color:#007ac7;--color: rgb(0, 122, 199)}:host .tertiary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .tertiary:focus,:host .tertiary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .tertiary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .tertiary[aria-selected=true],:host .tertiary:active,:host .tertiary.active,:host .tertiary.active:hover,:host .tertiary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .tertiary:disabled,:host .tertiary.disabled,:host .tertiary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .tertiary:disabled::placeholder,:host .tertiary.disabled::placeholder,:host .tertiary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost-light{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}:host .ghost-light:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected=true],:host .ghost-light:active,:host .ghost-light.active,:host .ghost-light.active:hover,:host .ghost-light:active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected]:hover,:host .ghost-light.active:hover,:host .ghost-light:active:hover{opacity:.9}:host .ghost-light:focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}:host .ghost-light:disabled,:host .ghost-light.disabled,:host .ghost-light[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost-light:disabled::placeholder,:host .ghost-light.disabled::placeholder,:host .ghost-light[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}:host .ghost:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected=true],:host .ghost:active,:host .ghost.active,:host .ghost.active:hover,:host .ghost:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected]:hover,:host .ghost.active:hover,:host .ghost:active:hover{opacity:.9}:host .ghost:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .ghost:disabled,:host .ghost.disabled,:host .ghost[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost:disabled::placeholder,:host .ghost.disabled::placeholder,:host .ghost[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger.primary{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger.primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger.primary[aria-selected=true],:host .danger.primary:active,:host .danger.primary.active,:host .danger.primary.active:hover,:host .danger.primary:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger.primary[aria-selected]:hover,:host .danger.primary.active:hover,:host .danger.primary:active:hover{opacity:.9}:host .danger.primary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger.primary:focus,:host .danger.primary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .danger.primary:disabled,:host .danger.primary.disabled,:host .danger.primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .danger.primary:disabled::placeholder,:host .danger.primary.disabled::placeholder,:host .danger.primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger:not(.primary){color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger:not(.primary):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger:not(.primary)[aria-selected=true],:host .danger:not(.primary):active,:host .danger:not(.primary).active,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger:not(.primary)[aria-selected]:hover,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{opacity:.9}:host .danger:not(.primary):focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger:not(.primary):focus,:host .danger:not(.primary):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NggvExternalLinkDirective, selector: "a[routerLink]", inputs: ["external"] }, { kind: "directive", type: i1$2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] }); }
593
593
  }
594
594
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvButtonComponent, decorators: [{
595
595
  type: Component,
596
- args: [{ selector: 'nggv-button', template: "<button\n #input\n [ngClass]=\"buttonClasses\"\n [id]=\"id + '-button'\"\n [attr.name]=\"name\"\n [attr.value]=\"value\"\n [type]=\"type\"\n [autofocus]=\"autofocus\"\n [disabled]=\"disabled\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type !== 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</button>\n\n<a\n #input\n [ngClass]=\"buttonClasses\"\n role=\"button\"\n [id]=\"id + '-link'\"\n [routerLink]=\"href\"\n [external]=\"external\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type === 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</a>\n\n<ng-template #contentRef>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-border-color: #868686;--gds-sys-color-focus-outline: #1a1a1a}:host button,:host a{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host button:focus:not(:focus-visible),:host a:focus:not(:focus-visible){box-shadow:none;outline:0}:host button:focus,:host button:focus-visible,:host a:focus,:host a:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host button,:host a{min-width:100%}}@media screen and (-ms-high-contrast: active){:host button,:host a{border:2px solid currentcolor}}:host button.small,:host a.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host button.large,:host a.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .primary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .primary[aria-selected=true],:host .primary:active,:host .primary.active,:host .primary.active:hover,:host .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .primary:disabled,:host .primary.disabled,:host .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .primary:disabled::placeholder,:host .primary.disabled::placeholder,:host .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .secondary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .secondary:focus,:host .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .secondary[aria-selected=true],:host .secondary:active,:host .secondary.active,:host .secondary.active:hover,:host .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .secondary:disabled,:host .secondary.disabled,:host .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .secondary:disabled::placeholder,:host .secondary.disabled::placeholder,:host .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .tertiary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:transparent;color:#007ac7;--color: rgb(0, 122, 199)}:host .tertiary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .tertiary:focus,:host .tertiary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .tertiary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .tertiary[aria-selected=true],:host .tertiary:active,:host .tertiary.active,:host .tertiary.active:hover,:host .tertiary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .tertiary:disabled,:host .tertiary.disabled,:host .tertiary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .tertiary:disabled::placeholder,:host .tertiary.disabled::placeholder,:host .tertiary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost-light{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}:host .ghost-light:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected=true],:host .ghost-light:active,:host .ghost-light.active,:host .ghost-light.active:hover,:host .ghost-light:active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected]:hover,:host .ghost-light.active:hover,:host .ghost-light:active:hover{opacity:.9}:host .ghost-light:focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}:host .ghost-light:disabled,:host .ghost-light.disabled,:host .ghost-light[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost-light:disabled::placeholder,:host .ghost-light.disabled::placeholder,:host .ghost-light[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}:host .ghost:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected=true],:host .ghost:active,:host .ghost.active,:host .ghost.active:hover,:host .ghost:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected]:hover,:host .ghost.active:hover,:host .ghost:active:hover{opacity:.9}:host .ghost:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .ghost:disabled,:host .ghost.disabled,:host .ghost[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost:disabled::placeholder,:host .ghost.disabled::placeholder,:host .ghost[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger.primary{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger.primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger.primary[aria-selected=true],:host .danger.primary:active,:host .danger.primary.active,:host .danger.primary.active:hover,:host .danger.primary:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger.primary[aria-selected]:hover,:host .danger.primary.active:hover,:host .danger.primary:active:hover{opacity:.9}:host .danger.primary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger.primary:focus,:host .danger.primary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .danger.primary:disabled,:host .danger.primary.disabled,:host .danger.primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .danger.primary:disabled::placeholder,:host .danger.primary.disabled::placeholder,:host .danger.primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger:not(.primary){color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger:not(.primary):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger:not(.primary)[aria-selected=true],:host .danger:not(.primary):active,:host .danger:not(.primary).active,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger:not(.primary)[aria-selected]:hover,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{opacity:.9}:host .danger:not(.primary):focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger:not(.primary):focus,:host .danger:not(.primary):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}\n"] }]
596
+ args: [{ selector: 'nggv-button', template: "<button\n #input\n [ngClass]=\"buttonClasses\"\n [id]=\"id + '-button'\"\n [attr.name]=\"name\"\n [attr.value]=\"value\"\n [type]=\"type\"\n [autofocus]=\"autofocus\"\n [disabled]=\"disabled\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type !== 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</button>\n\n<a\n #input\n [ngClass]=\"buttonClasses\"\n role=\"button\"\n [id]=\"id + '-link'\"\n [routerLink]=\"href\"\n [external]=\"external\"\n [attr.aria-label]=\"description\"\n (click)=\"onClick($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n *ngIf=\"type === 'link'\"\n>\n <ng-container *ngTemplateOutlet=\"contentRef\"></ng-container>\n</a>\n\n<ng-template #contentRef>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-border-color: #868686;--gds-sys-color-focus-outline: #1a1a1a}:host button,:host a{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host button:focus:not(:focus-visible),:host a:focus:not(:focus-visible){box-shadow:none;outline:0}:host button:focus,:host button:focus-visible,:host a:focus,:host a:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host button,:host a{min-width:100%}}@media screen and (-ms-high-contrast: active){:host button,:host a{border:2px solid currentcolor}}:host button.small,:host a.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host button.large,:host a.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .primary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .primary[aria-selected=true],:host .primary:active,:host .primary.active,:host .primary.active:hover,:host .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .primary:disabled,:host .primary.disabled,:host .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .primary:disabled::placeholder,:host .primary.disabled::placeholder,:host .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .secondary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .secondary:focus,:host .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .secondary[aria-selected=true],:host .secondary:active,:host .secondary.active,:host .secondary.active:hover,:host .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .secondary:disabled,:host .secondary.disabled,:host .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .secondary:disabled::placeholder,:host .secondary.disabled::placeholder,:host .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .tertiary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:transparent;color:#007ac7;--color: rgb(0, 122, 199)}:host .tertiary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .tertiary:focus,:host .tertiary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .tertiary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .tertiary[aria-selected=true],:host .tertiary:active,:host .tertiary.active,:host .tertiary.active:hover,:host .tertiary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .tertiary:disabled,:host .tertiary.disabled,:host .tertiary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .tertiary:disabled::placeholder,:host .tertiary.disabled::placeholder,:host .tertiary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost-light{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#fff;color:#fff;--color: rgb(255, 255, 255)}:host .ghost-light:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected=true],:host .ghost-light:active,:host .ghost-light.active,:host .ghost-light.active:hover,:host .ghost-light:active:hover{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff}:host .ghost-light[aria-selected]:hover,:host .ghost-light.active:hover,:host .ghost-light:active:hover{opacity:.9}:host .ghost-light:focus-visible{background-color:#fff;color:#000;--background: rgb(255, 255, 255);--color: black;border-color:#fff!important}:host .ghost-light:disabled,:host .ghost-light.disabled,:host .ghost-light[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost-light:disabled::placeholder,:host .ghost-light.disabled::placeholder,:host .ghost-light[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .ghost{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51)}:host .ghost:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected=true],:host .ghost:active,:host .ghost.active,:host .ghost.active:hover,:host .ghost:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .ghost[aria-selected]:hover,:host .ghost.active:hover,:host .ghost:active:hover{opacity:.9}:host .ghost:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .ghost:disabled,:host .ghost.disabled,:host .ghost[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .ghost:disabled::placeholder,:host .ghost.disabled::placeholder,:host .ghost[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger.primary{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger.primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger.primary[aria-selected=true],:host .danger.primary:active,:host .danger.primary.active,:host .danger.primary.active:hover,:host .danger.primary:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger.primary[aria-selected]:hover,:host .danger.primary.active:hover,:host .danger.primary:active:hover{opacity:.9}:host .danger.primary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger.primary:focus,:host .danger.primary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .danger.primary:disabled,:host .danger.primary.disabled,:host .danger.primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .danger.primary:disabled::placeholder,:host .danger.primary.disabled::placeholder,:host .danger.primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .danger:not(.primary){color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .danger:not(.primary):not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .danger:not(.primary)[aria-selected=true],:host .danger:not(.primary):active,:host .danger:not(.primary).active,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .danger:not(.primary)[aria-selected]:hover,:host .danger:not(.primary).active:hover,:host .danger:not(.primary):active:hover{opacity:.9}:host .danger:not(.primary):focus:not(:focus-visible){box-shadow:none;outline:0}:host .danger:not(.primary):focus,:host .danger:not(.primary):focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}\n"] }]
597
597
  }], ctorParameters: () => [{ type: i1$1.NgControl, decorators: [{
598
598
  type: Self
599
599
  }, {
@@ -2617,11 +2617,11 @@ class DateInputComponent extends DateControlValueAccessorComponent {
2617
2617
  });
2618
2618
  }
2619
2619
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateInputComponent, deps: [{ token: i1$1.NgControl, optional: true, self: true }, { token: TRANSLOCO_SCOPE, optional: true }, { token: i3.TranslocoService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
2620
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: DateInputComponent, selector: "nggv-dateinput,nggv-input[type=date]", inputs: { thook: "thook", type: "type", readonly: "readonly", disableDates: "disableDates", disableWeekDays: "disableWeekDays", minRows: "minRows", firstValid: "firstValid", lastValid: "lastValid", closingTime: "closingTime", firstDayOfWeek: "firstDayOfWeek", closeCalendarOnEscape: "closeCalendarOnEscape", closeOnScroll: "closeOnScroll", size: "size", dynamicPosition: "dynamicPosition" }, host: { listeners: { "keydown": "keyListener($event)" }, properties: { "attr.data-thook": "this.thook", "class.small": "this.isSmall", "class.large": "this.isLarge" } }, viewQueries: [{ propertyName: "toggleButtonRef", first: true, predicate: ["toggleCalendarButton"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<!-- LABEL -->\n<ng-container *transloco=\"let t; read: scope\">\n <label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n >\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n </label>\n\n <!-- DESCRIPTION -->\n <div\n class=\"gds-field-label--small description hide-if-empty\"\n *ngIf=\"description\"\n >\n {{ description }}\n </div>\n\n <!-- LOCKED INPUT -->\n <ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n {{ state | nggvInputMaskFormat: dateInputMask }}\n </ng-container>\n </div>\n </ng-template>\n </ng-container>\n\n <!-- INPUT WRAPPER -->\n <ng-container *ngIf=\"!locked\">\n <div\n class=\"field-wrap\"\n [class.nggv-field--error]=\"invalid\"\n *ngIf=\"showInput$ | async\"\n >\n <!-- INPUT FIELD -->\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"nggv-field-date\"\n type=\"text\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [disabled]=\"disabled\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [nggvInputMask]=\"dateInputMask\"\n [value]=\"state\"\n title=\"\"\n (change)=\"onValueChange($event.target)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n\n <button\n aria-label=\"toggle calendar\"\n #toggleCalendarButton\n class=\"nggv-button-date\"\n type=\"button\"\n data-thook=\"toggle-calendar-button\"\n (click)=\"toggleDatepicker()\"\n [disabled]=\"disabled\"\n >\n @if (size === 'small') {\n <gds-icon-calendar *nggCoreElement size=\"16px\"></gds-icon-calendar>\n }\n\n @if (size === 'large') {\n <gds-icon-calendar *nggCoreElement size=\"20px\"></gds-icon-calendar>\n }\n </button>\n </div>\n\n <!-- DATEPICKER -->\n <div class=\"nggv-datepicker\" *ngIf=\"shown\">\n <nggv-datepicker\n #input\n [type]=\"type\"\n [disableDates]=\"disableDates\"\n [disableWeekDays]=\"disableWeekDays\"\n [selected]=\"state\"\n [locale]=\"locale\"\n [minCalendarRows]=\"minRows\"\n [firstDayOfWeek]=\"firstDayOfWeek\"\n [firstValid]=\"firstValid\"\n [lastValid]=\"lastValid\"\n [closingTime]=\"closingTime\"\n [dynamicPosition]=\"dynamicPosition\"\n [size]=\"size\"\n (ngvDateChange)=\"onDateChange($event)\"\n >\n <ng-content></ng-content>\n </nggv-datepicker>\n </div>\n\n <!-- ERRORS -->\n <ng-container\n *ngIf=\"\n invalid &&\n (error || ngControl?.invalid) &&\n (!errorList || !errorList.length)\n \"\n >\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n *ngIf=\"error; else errorsRef\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n </label>\n </ng-container>\n <ng-container *ngFor=\"let error of errorList ?? []\">\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && error\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n </span>\n </label>\n </ng-container>\n </ng-container>\n</ng-container>\n", styles: [":host{display:block;position:relative}@media (max-width: 47.98em){:host{min-width:100%}}:host .hide-if-empty:empty{display:none}:host .unset-state{padding-left:.5rem}:host .gds-field-label{display:block}:host .gds-field-label:is(label){margin-bottom:0}:host .gds-field-label.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label.form-control:focus,:host .gds-field-label.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label+input,:host .gds-field-label+textarea,fieldset :host .gds-field-label+div,:host .gds-field-label+button,:host .gds-field-label+.group-stepper,:host .gds-field-label+.stepper-wrapper,:host .gds-field-label+.group{margin-top:.5rem}:host .gds-field-label+.form-info{margin-bottom:.5rem}:host label+.field-wrap,:host label+.nggv-field--locked{margin-top:.5rem}:host .description{font-size:.875rem;margin-bottom:.5rem;line-height:1.25rem;width:100%}:host .gds-field-label--optional:is(label){margin-bottom:0}:host .gds-field-label--optional.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label--optional.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label--optional.form-control:focus,:host .gds-field-label--optional.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label--optional:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label--optional+input,:host .gds-field-label--optional+textarea,fieldset :host .gds-field-label--optional+div,:host .gds-field-label--optional+button,:host .gds-field-label--optional+.group-stepper,:host .gds-field-label--optional+.stepper-wrapper,:host .gds-field-label--optional+.group{margin-top:.5rem}:host .gds-field-label--optional+.form-info{margin-bottom:.5rem}:host .nggv-datepicker{margin-top:.25rem;position:absolute}:host .nggv-field--error{border-bottom:.125rem solid #9f000a!important}:host .nggv-field--error:focus,:host .nggv-field--error:active,:host .nggv-field--error:hover{border-bottom:.125rem solid #9f000a!important}:host .error-item{display:flex;gap:.5rem;color:#9f000a}:host .gds-field-notice{margin-top:.5rem;display:block;font-size:.875rem;line-height:1;font-weight:500}:host .field-wrap{border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;height:2.625rem;display:flex}:host .field-wrap *,:host .field-wrap *:before,:host .field-wrap *:after{box-sizing:border-box}:host .field-wrap .nggv-button-date{--text-disabled-color: #adadad;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);background-color:transparent;min-height:2.5rem;border:none;border-radius:3px;width:2.625rem;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;text-align:right}:host .field-wrap .nggv-button-date:focus:not(:focus-visible){box-shadow:none;outline:0}:host .field-wrap .nggv-button-date:focus,:host .field-wrap .nggv-button-date:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .field-wrap .nggv-button-date{border:2px solid currentcolor}}:host .field-wrap .nggv-button-date.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .field-wrap .nggv-button-date.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .field-wrap .nggv-button-date:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected=true],:host .field-wrap .nggv-button-date:active,:host .field-wrap .nggv-button-date.active,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected]:hover,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{opacity:.9}:host .field-wrap .nggv-button-date:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .field-wrap .nggv-button-date:disabled,:host .field-wrap .nggv-button-date.disabled,:host .field-wrap .nggv-button-date[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .field-wrap .nggv-button-date:disabled::placeholder,:host .field-wrap .nggv-button-date.disabled::placeholder,:host .field-wrap .nggv-button-date[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 47.98em){:host .field-wrap .nggv-button-date{width:2.625rem;height:2.625rem}}:host .field-wrap .nggv-button-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-button-date[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:initial}}:host .field-wrap input[type=text]::-webkit-inner-spin-button,:host .field-wrap input[type=text]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none;font-size:1rem;font-family:inherit}:host .field-wrap .nggv-field-date{border:1px solid #cecece;border-radius:4px 0 0 4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%;padding-left:1rem}:host .field-wrap .nggv-field-date *,:host .field-wrap .nggv-field-date *:before,:host .field-wrap .nggv-field-date *:after{box-sizing:border-box}:host .field-wrap .nggv-field-date:hover{border-color:#41b0ee}:host .field-wrap .nggv-field-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-field-date:active{border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]::placeholder{color:#cecece}:host .field-wrap .nggv-field-date:not(:focus){border-right:none;padding-right:0}:host .field-wrap .nggv-field-date:focus{padding-right:0}:host.small .gds-field-label{font-size:.875rem;line-height:1rem}:host.small label+.field-wrap{margin-top:.25rem}:host.small .field-wrap{height:calc(2rem + 3px);min-height:calc(2rem + 3px)}:host.small .field-wrap .nggv-field-date{padding:.38rem .5rem;line-height:1rem;min-height:2rem;font-size:.875rem}:host.small .field-wrap .nggv-button-date{min-height:2rem;min-width:2rem;width:2rem;height:2rem;padding:0}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: i4$1.NggvInputMaskDirective, selector: "[nggvInputMask]", inputs: ["nggvInputMask"] }, { kind: "directive", type: i4.NggCoreElementDirective, selector: "[nggCoreElement]" }, { kind: "component", type: DatepickerComponent, selector: "nggv-datepicker", inputs: ["firstDayOfWeek", "disableDates", "disableWeekDays", "minCalendarRows", "selected", "locale", "type", "firstValid", "lastValid", "closingTime", "dynamicPosition", "size"], outputs: ["ngvDateChange"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i4$1.InputMaskFormatPipe, name: "nggvInputMaskFormat" }] }); }
2620
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: DateInputComponent, selector: "nggv-dateinput,nggv-input[type=date]", inputs: { thook: "thook", type: "type", readonly: "readonly", disableDates: "disableDates", disableWeekDays: "disableWeekDays", minRows: "minRows", firstValid: "firstValid", lastValid: "lastValid", closingTime: "closingTime", firstDayOfWeek: "firstDayOfWeek", closeCalendarOnEscape: "closeCalendarOnEscape", closeOnScroll: "closeOnScroll", size: "size", dynamicPosition: "dynamicPosition" }, host: { listeners: { "keydown": "keyListener($event)" }, properties: { "attr.data-thook": "this.thook", "class.small": "this.isSmall", "class.large": "this.isLarge" } }, viewQueries: [{ propertyName: "toggleButtonRef", first: true, predicate: ["toggleCalendarButton"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<!-- LABEL -->\n<ng-container *transloco=\"let t; read: scope\">\n <label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n >\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n </label>\n\n <!-- DESCRIPTION -->\n <div\n class=\"gds-field-label--small description hide-if-empty\"\n *ngIf=\"description\"\n >\n {{ description }}\n </div>\n\n <!-- LOCKED INPUT -->\n <ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n {{ state | nggvInputMaskFormat: dateInputMask }}\n </ng-container>\n </div>\n </ng-template>\n </ng-container>\n\n <!-- INPUT WRAPPER -->\n <ng-container *ngIf=\"!locked\">\n <div\n class=\"field-wrap\"\n [class.nggv-field--error]=\"invalid\"\n *ngIf=\"showInput$ | async\"\n >\n <!-- INPUT FIELD -->\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"nggv-field-date\"\n type=\"text\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [disabled]=\"disabled\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [nggvInputMask]=\"dateInputMask\"\n [value]=\"state\"\n title=\"\"\n (change)=\"onValueChange($event.target)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n\n <button\n aria-label=\"toggle calendar\"\n #toggleCalendarButton\n class=\"nggv-button-date\"\n type=\"button\"\n data-thook=\"toggle-calendar-button\"\n (click)=\"toggleDatepicker()\"\n [disabled]=\"disabled\"\n >\n @if (size === 'small') {\n <gds-icon-calendar *nggCoreElement size=\"16px\"></gds-icon-calendar>\n }\n\n @if (size === 'large') {\n <gds-icon-calendar *nggCoreElement size=\"20px\"></gds-icon-calendar>\n }\n </button>\n </div>\n\n <!-- DATEPICKER -->\n <div class=\"nggv-datepicker\" *ngIf=\"shown\">\n <nggv-datepicker\n #input\n [type]=\"type\"\n [disableDates]=\"disableDates\"\n [disableWeekDays]=\"disableWeekDays\"\n [selected]=\"state\"\n [locale]=\"locale\"\n [minCalendarRows]=\"minRows\"\n [firstDayOfWeek]=\"firstDayOfWeek\"\n [firstValid]=\"firstValid\"\n [lastValid]=\"lastValid\"\n [closingTime]=\"closingTime\"\n [dynamicPosition]=\"dynamicPosition\"\n [size]=\"size\"\n (ngvDateChange)=\"onDateChange($event)\"\n >\n <ng-content></ng-content>\n </nggv-datepicker>\n </div>\n\n <!-- ERRORS -->\n <ng-container\n *ngIf=\"\n invalid &&\n (error || ngControl?.invalid) &&\n (!errorList || !errorList.length)\n \"\n >\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n *ngIf=\"error; else errorsRef\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n </label>\n </ng-container>\n <ng-container *ngFor=\"let error of errorList ?? []\">\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && error\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n </span>\n </label>\n </ng-container>\n </ng-container>\n</ng-container>\n", styles: [":host{display:block;position:relative}@media (max-width: 47.98em){:host{min-width:100%}}:host .hide-if-empty:empty{display:none}:host .unset-state{padding-left:.5rem}:host .gds-field-label{display:block}:host .gds-field-label:is(label){margin-bottom:0}:host .gds-field-label.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label.form-control:focus,:host .gds-field-label.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label+input,:host .gds-field-label+textarea,fieldset :host .gds-field-label+div,:host .gds-field-label+button,:host .gds-field-label+.group-stepper,:host .gds-field-label+.stepper-wrapper,:host .gds-field-label+.group{margin-top:.5rem}:host .gds-field-label+.form-info{margin-bottom:.5rem}:host label+.field-wrap,:host label+.nggv-field--locked{margin-top:.5rem}:host .description{font-size:.875rem;margin-bottom:.5rem;line-height:1.25rem;width:100%}:host .gds-field-label--optional:is(label){margin-bottom:0}:host .gds-field-label--optional.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label--optional.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label--optional.form-control:focus,:host .gds-field-label--optional.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label--optional:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label--optional+input,:host .gds-field-label--optional+textarea,fieldset :host .gds-field-label--optional+div,:host .gds-field-label--optional+button,:host .gds-field-label--optional+.group-stepper,:host .gds-field-label--optional+.stepper-wrapper,:host .gds-field-label--optional+.group{margin-top:.5rem}:host .gds-field-label--optional+.form-info{margin-bottom:.5rem}:host .nggv-datepicker{margin-top:.25rem;position:absolute}:host .nggv-field--error{border-bottom:.125rem solid #9f000a!important}:host .nggv-field--error:focus,:host .nggv-field--error:active,:host .nggv-field--error:hover{border-bottom:.125rem solid #9f000a!important}:host .error-item{display:flex;gap:.5rem;color:#9f000a}:host .gds-field-notice{margin-top:.5rem;display:block;font-size:.875rem;line-height:1;font-weight:500}:host .field-wrap{border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;height:2.625rem;display:flex}:host .field-wrap *,:host .field-wrap *:before,:host .field-wrap *:after{box-sizing:border-box}:host .field-wrap .nggv-button-date{--text-disabled-color: #adadad;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);background-color:transparent;min-height:2.5rem;border:none;border-radius:3px;width:2.625rem;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;text-align:right}:host .field-wrap .nggv-button-date:focus:not(:focus-visible){box-shadow:none;outline:0}:host .field-wrap .nggv-button-date:focus,:host .field-wrap .nggv-button-date:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .field-wrap .nggv-button-date{border:2px solid currentcolor}}:host .field-wrap .nggv-button-date.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .field-wrap .nggv-button-date.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .field-wrap .nggv-button-date:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected=true],:host .field-wrap .nggv-button-date:active,:host .field-wrap .nggv-button-date.active,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected]:hover,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{opacity:.9}:host .field-wrap .nggv-button-date:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .field-wrap .nggv-button-date:disabled,:host .field-wrap .nggv-button-date.disabled,:host .field-wrap .nggv-button-date[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .field-wrap .nggv-button-date:disabled::placeholder,:host .field-wrap .nggv-button-date.disabled::placeholder,:host .field-wrap .nggv-button-date[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 47.98em){:host .field-wrap .nggv-button-date{width:2.625rem;height:2.625rem}}:host .field-wrap .nggv-button-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-button-date[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:initial}}:host .field-wrap input[type=text]::-webkit-inner-spin-button,:host .field-wrap input[type=text]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none;font-size:1rem;font-family:inherit}:host .field-wrap .nggv-field-date{border:1px solid #cecece;border-radius:4px 0 0 4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%;padding-left:1rem}:host .field-wrap .nggv-field-date *,:host .field-wrap .nggv-field-date *:before,:host .field-wrap .nggv-field-date *:after{box-sizing:border-box}:host .field-wrap .nggv-field-date:hover{border-color:#41b0ee}:host .field-wrap .nggv-field-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-field-date:active{border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]::placeholder{color:#cecece}:host .field-wrap .nggv-field-date:not(:focus){border-right:none;padding-right:0}:host .field-wrap .nggv-field-date:focus{padding-right:0}:host.small .gds-field-label{font-size:.875rem;line-height:1rem}:host.small label+.field-wrap{margin-top:.25rem}:host.small .field-wrap{height:calc(2rem + 3px);min-height:calc(2rem + 3px)}:host.small .field-wrap .nggv-field-date{padding:.38rem .5rem;line-height:1rem;min-height:2rem;font-size:.875rem}:host.small .field-wrap .nggv-button-date{min-height:2rem;min-width:2rem;width:2rem;height:2rem;padding:0}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: i4$1.NggvInputMaskDirective, selector: "[nggvInputMask]", inputs: ["nggvInputMask"] }, { kind: "directive", type: i4.NggCoreElementDirective, selector: "[nggCoreElement]" }, { kind: "component", type: DatepickerComponent, selector: "nggv-datepicker", inputs: ["firstDayOfWeek", "disableDates", "disableWeekDays", "minCalendarRows", "selected", "locale", "type", "firstValid", "lastValid", "closingTime", "dynamicPosition", "size"], outputs: ["ngvDateChange"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i4$1.InputMaskFormatPipe, name: "nggvInputMaskFormat" }] }); }
2621
2621
  }
2622
2622
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateInputComponent, decorators: [{
2623
2623
  type: Component,
2624
- args: [{ selector: 'nggv-dateinput,nggv-input[type=date]', template: "<!-- LABEL -->\n<ng-container *transloco=\"let t; read: scope\">\n <label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n >\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n </label>\n\n <!-- DESCRIPTION -->\n <div\n class=\"gds-field-label--small description hide-if-empty\"\n *ngIf=\"description\"\n >\n {{ description }}\n </div>\n\n <!-- LOCKED INPUT -->\n <ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n {{ state | nggvInputMaskFormat: dateInputMask }}\n </ng-container>\n </div>\n </ng-template>\n </ng-container>\n\n <!-- INPUT WRAPPER -->\n <ng-container *ngIf=\"!locked\">\n <div\n class=\"field-wrap\"\n [class.nggv-field--error]=\"invalid\"\n *ngIf=\"showInput$ | async\"\n >\n <!-- INPUT FIELD -->\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"nggv-field-date\"\n type=\"text\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [disabled]=\"disabled\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [nggvInputMask]=\"dateInputMask\"\n [value]=\"state\"\n title=\"\"\n (change)=\"onValueChange($event.target)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n\n <button\n aria-label=\"toggle calendar\"\n #toggleCalendarButton\n class=\"nggv-button-date\"\n type=\"button\"\n data-thook=\"toggle-calendar-button\"\n (click)=\"toggleDatepicker()\"\n [disabled]=\"disabled\"\n >\n @if (size === 'small') {\n <gds-icon-calendar *nggCoreElement size=\"16px\"></gds-icon-calendar>\n }\n\n @if (size === 'large') {\n <gds-icon-calendar *nggCoreElement size=\"20px\"></gds-icon-calendar>\n }\n </button>\n </div>\n\n <!-- DATEPICKER -->\n <div class=\"nggv-datepicker\" *ngIf=\"shown\">\n <nggv-datepicker\n #input\n [type]=\"type\"\n [disableDates]=\"disableDates\"\n [disableWeekDays]=\"disableWeekDays\"\n [selected]=\"state\"\n [locale]=\"locale\"\n [minCalendarRows]=\"minRows\"\n [firstDayOfWeek]=\"firstDayOfWeek\"\n [firstValid]=\"firstValid\"\n [lastValid]=\"lastValid\"\n [closingTime]=\"closingTime\"\n [dynamicPosition]=\"dynamicPosition\"\n [size]=\"size\"\n (ngvDateChange)=\"onDateChange($event)\"\n >\n <ng-content></ng-content>\n </nggv-datepicker>\n </div>\n\n <!-- ERRORS -->\n <ng-container\n *ngIf=\"\n invalid &&\n (error || ngControl?.invalid) &&\n (!errorList || !errorList.length)\n \"\n >\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n *ngIf=\"error; else errorsRef\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n </label>\n </ng-container>\n <ng-container *ngFor=\"let error of errorList ?? []\">\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && error\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n </span>\n </label>\n </ng-container>\n </ng-container>\n</ng-container>\n", styles: [":host{display:block;position:relative}@media (max-width: 47.98em){:host{min-width:100%}}:host .hide-if-empty:empty{display:none}:host .unset-state{padding-left:.5rem}:host .gds-field-label{display:block}:host .gds-field-label:is(label){margin-bottom:0}:host .gds-field-label.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label.form-control:focus,:host .gds-field-label.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label+input,:host .gds-field-label+textarea,fieldset :host .gds-field-label+div,:host .gds-field-label+button,:host .gds-field-label+.group-stepper,:host .gds-field-label+.stepper-wrapper,:host .gds-field-label+.group{margin-top:.5rem}:host .gds-field-label+.form-info{margin-bottom:.5rem}:host label+.field-wrap,:host label+.nggv-field--locked{margin-top:.5rem}:host .description{font-size:.875rem;margin-bottom:.5rem;line-height:1.25rem;width:100%}:host .gds-field-label--optional:is(label){margin-bottom:0}:host .gds-field-label--optional.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label--optional.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label--optional.form-control:focus,:host .gds-field-label--optional.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label--optional:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label--optional+input,:host .gds-field-label--optional+textarea,fieldset :host .gds-field-label--optional+div,:host .gds-field-label--optional+button,:host .gds-field-label--optional+.group-stepper,:host .gds-field-label--optional+.stepper-wrapper,:host .gds-field-label--optional+.group{margin-top:.5rem}:host .gds-field-label--optional+.form-info{margin-bottom:.5rem}:host .nggv-datepicker{margin-top:.25rem;position:absolute}:host .nggv-field--error{border-bottom:.125rem solid #9f000a!important}:host .nggv-field--error:focus,:host .nggv-field--error:active,:host .nggv-field--error:hover{border-bottom:.125rem solid #9f000a!important}:host .error-item{display:flex;gap:.5rem;color:#9f000a}:host .gds-field-notice{margin-top:.5rem;display:block;font-size:.875rem;line-height:1;font-weight:500}:host .field-wrap{border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;height:2.625rem;display:flex}:host .field-wrap *,:host .field-wrap *:before,:host .field-wrap *:after{box-sizing:border-box}:host .field-wrap .nggv-button-date{--text-disabled-color: #adadad;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);background-color:transparent;min-height:2.5rem;border:none;border-radius:3px;width:2.625rem;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;text-align:right}:host .field-wrap .nggv-button-date:focus:not(:focus-visible){box-shadow:none;outline:0}:host .field-wrap .nggv-button-date:focus,:host .field-wrap .nggv-button-date:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .field-wrap .nggv-button-date{border:2px solid currentcolor}}:host .field-wrap .nggv-button-date.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .field-wrap .nggv-button-date.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .field-wrap .nggv-button-date:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected=true],:host .field-wrap .nggv-button-date:active,:host .field-wrap .nggv-button-date.active,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected]:hover,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{opacity:.9}:host .field-wrap .nggv-button-date:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .field-wrap .nggv-button-date:disabled,:host .field-wrap .nggv-button-date.disabled,:host .field-wrap .nggv-button-date[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .field-wrap .nggv-button-date:disabled::placeholder,:host .field-wrap .nggv-button-date.disabled::placeholder,:host .field-wrap .nggv-button-date[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 47.98em){:host .field-wrap .nggv-button-date{width:2.625rem;height:2.625rem}}:host .field-wrap .nggv-button-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-button-date[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:initial}}:host .field-wrap input[type=text]::-webkit-inner-spin-button,:host .field-wrap input[type=text]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none;font-size:1rem;font-family:inherit}:host .field-wrap .nggv-field-date{border:1px solid #cecece;border-radius:4px 0 0 4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%;padding-left:1rem}:host .field-wrap .nggv-field-date *,:host .field-wrap .nggv-field-date *:before,:host .field-wrap .nggv-field-date *:after{box-sizing:border-box}:host .field-wrap .nggv-field-date:hover{border-color:#41b0ee}:host .field-wrap .nggv-field-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-field-date:active{border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]::placeholder{color:#cecece}:host .field-wrap .nggv-field-date:not(:focus){border-right:none;padding-right:0}:host .field-wrap .nggv-field-date:focus{padding-right:0}:host.small .gds-field-label{font-size:.875rem;line-height:1rem}:host.small label+.field-wrap{margin-top:.25rem}:host.small .field-wrap{height:calc(2rem + 3px);min-height:calc(2rem + 3px)}:host.small .field-wrap .nggv-field-date{padding:.38rem .5rem;line-height:1rem;min-height:2rem;font-size:.875rem}:host.small .field-wrap .nggv-button-date{min-height:2rem;min-width:2rem;width:2rem;height:2rem;padding:0}\n"] }]
2624
+ args: [{ selector: 'nggv-dateinput,nggv-input[type=date]', template: "<!-- LABEL -->\n<ng-container *transloco=\"let t; read: scope\">\n <label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n >\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n </label>\n\n <!-- DESCRIPTION -->\n <div\n class=\"gds-field-label--small description hide-if-empty\"\n *ngIf=\"description\"\n >\n {{ description }}\n </div>\n\n <!-- LOCKED INPUT -->\n <ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n {{ state | nggvInputMaskFormat: dateInputMask }}\n </ng-container>\n </div>\n </ng-template>\n </ng-container>\n\n <!-- INPUT WRAPPER -->\n <ng-container *ngIf=\"!locked\">\n <div\n class=\"field-wrap\"\n [class.nggv-field--error]=\"invalid\"\n *ngIf=\"showInput$ | async\"\n >\n <!-- INPUT FIELD -->\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"nggv-field-date\"\n type=\"text\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [disabled]=\"disabled\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [nggvInputMask]=\"dateInputMask\"\n [value]=\"state\"\n title=\"\"\n (change)=\"onValueChange($event.target)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n\n <button\n aria-label=\"toggle calendar\"\n #toggleCalendarButton\n class=\"nggv-button-date\"\n type=\"button\"\n data-thook=\"toggle-calendar-button\"\n (click)=\"toggleDatepicker()\"\n [disabled]=\"disabled\"\n >\n @if (size === 'small') {\n <gds-icon-calendar *nggCoreElement size=\"16px\"></gds-icon-calendar>\n }\n\n @if (size === 'large') {\n <gds-icon-calendar *nggCoreElement size=\"20px\"></gds-icon-calendar>\n }\n </button>\n </div>\n\n <!-- DATEPICKER -->\n <div class=\"nggv-datepicker\" *ngIf=\"shown\">\n <nggv-datepicker\n #input\n [type]=\"type\"\n [disableDates]=\"disableDates\"\n [disableWeekDays]=\"disableWeekDays\"\n [selected]=\"state\"\n [locale]=\"locale\"\n [minCalendarRows]=\"minRows\"\n [firstDayOfWeek]=\"firstDayOfWeek\"\n [firstValid]=\"firstValid\"\n [lastValid]=\"lastValid\"\n [closingTime]=\"closingTime\"\n [dynamicPosition]=\"dynamicPosition\"\n [size]=\"size\"\n (ngvDateChange)=\"onDateChange($event)\"\n >\n <ng-content></ng-content>\n </nggv-datepicker>\n </div>\n\n <!-- ERRORS -->\n <ng-container\n *ngIf=\"\n invalid &&\n (error || ngControl?.invalid) &&\n (!errorList || !errorList.length)\n \"\n >\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n *ngIf=\"error; else errorsRef\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n </label>\n </ng-container>\n <ng-container *ngFor=\"let error of errorList ?? []\">\n <label\n class=\"gds-field-notice gds-field-notice--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && error\"\n >\n <span class=\"error-item\">\n <span class=\"error-item--icon\">\n <gds-icon-triangle-exclamation\n *nggCoreElement\n [solid]=\"true\"\n size=\"16px\"\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n class=\"error-item--text\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n </span>\n </label>\n </ng-container>\n </ng-container>\n</ng-container>\n", styles: [":host{display:block;position:relative}@media (max-width: 47.98em){:host{min-width:100%}}:host .hide-if-empty:empty{display:none}:host .unset-state{padding-left:.5rem}:host .gds-field-label{display:block}:host .gds-field-label:is(label){margin-bottom:0}:host .gds-field-label.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label.form-control:focus,:host .gds-field-label.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label+input,:host .gds-field-label+textarea,fieldset :host .gds-field-label+div,:host .gds-field-label+button,:host .gds-field-label+.group-stepper,:host .gds-field-label+.stepper-wrapper,:host .gds-field-label+.group{margin-top:.5rem}:host .gds-field-label+.form-info{margin-bottom:.5rem}:host label+.field-wrap,:host label+.nggv-field--locked{margin-top:.5rem}:host .description{font-size:.875rem;margin-bottom:.5rem;line-height:1.25rem;width:100%}:host .gds-field-label--optional:is(label){margin-bottom:0}:host .gds-field-label--optional.form-control{width:fit-content}@supports (-moz-appearance: none){:host .gds-field-label--optional.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-field-label--optional.form-control:focus,:host .gds-field-label--optional.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host .gds-field-label--optional:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host .gds-field-label--optional+input,:host .gds-field-label--optional+textarea,fieldset :host .gds-field-label--optional+div,:host .gds-field-label--optional+button,:host .gds-field-label--optional+.group-stepper,:host .gds-field-label--optional+.stepper-wrapper,:host .gds-field-label--optional+.group{margin-top:.5rem}:host .gds-field-label--optional+.form-info{margin-bottom:.5rem}:host .nggv-datepicker{margin-top:.25rem;position:absolute}:host .nggv-field--error{border-bottom:.125rem solid #9f000a!important}:host .nggv-field--error:focus,:host .nggv-field--error:active,:host .nggv-field--error:hover{border-bottom:.125rem solid #9f000a!important}:host .error-item{display:flex;gap:.5rem;color:#9f000a}:host .gds-field-notice{margin-top:.5rem;display:block;font-size:.875rem;line-height:1;font-weight:500}:host .field-wrap{border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;height:2.625rem;display:flex}:host .field-wrap *,:host .field-wrap *:before,:host .field-wrap *:after{box-sizing:border-box}:host .field-wrap .nggv-button-date{--text-disabled-color: #adadad;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-color:#333;color:#333;--color: rgb(51, 51, 51);background-color:transparent;min-height:2.5rem;border:none;border-radius:3px;width:2.625rem;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;text-align:right}:host .field-wrap .nggv-button-date:focus:not(:focus-visible){box-shadow:none;outline:0}:host .field-wrap .nggv-button-date:focus,:host .field-wrap .nggv-button-date:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .field-wrap .nggv-button-date{border:2px solid currentcolor}}:host .field-wrap .nggv-button-date.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .field-wrap .nggv-button-date.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .field-wrap .nggv-button-date:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected=true],:host .field-wrap .nggv-button-date:active,:host .field-wrap .nggv-button-date.active,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .field-wrap .nggv-button-date[aria-selected]:hover,:host .field-wrap .nggv-button-date.active:hover,:host .field-wrap .nggv-button-date:active:hover{opacity:.9}:host .field-wrap .nggv-button-date:focus-visible{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333!important}:host .field-wrap .nggv-button-date:disabled,:host .field-wrap .nggv-button-date.disabled,:host .field-wrap .nggv-button-date[aria-disabled=true]{color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .field-wrap .nggv-button-date:disabled::placeholder,:host .field-wrap .nggv-button-date.disabled::placeholder,:host .field-wrap .nggv-button-date[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}@media (max-width: 47.98em){:host .field-wrap .nggv-button-date{width:2.625rem;height:2.625rem}}:host .field-wrap .nggv-button-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-button-date[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .field-wrap .nggv-button-date{min-width:initial}}:host .field-wrap input[type=text]::-webkit-inner-spin-button,:host .field-wrap input[type=text]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none;font-size:1rem;font-family:inherit}:host .field-wrap .nggv-field-date{border:1px solid #cecece;border-radius:4px 0 0 4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%;padding-left:1rem}:host .field-wrap .nggv-field-date *,:host .field-wrap .nggv-field-date *:before,:host .field-wrap .nggv-field-date *:after{box-sizing:border-box}:host .field-wrap .nggv-field-date:hover{border-color:#41b0ee}:host .field-wrap .nggv-field-date:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .field-wrap .nggv-field-date:active{border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .field-wrap .nggv-field-date[disabled]::placeholder{color:#cecece}:host .field-wrap .nggv-field-date:not(:focus){border-right:none;padding-right:0}:host .field-wrap .nggv-field-date:focus{padding-right:0}:host.small .gds-field-label{font-size:.875rem;line-height:1rem}:host.small label+.field-wrap{margin-top:.25rem}:host.small .field-wrap{height:calc(2rem + 3px);min-height:calc(2rem + 3px)}:host.small .field-wrap .nggv-field-date{padding:.38rem .5rem;line-height:1rem;min-height:2rem;font-size:.875rem}:host.small .field-wrap .nggv-button-date{min-height:2rem;min-width:2rem;width:2rem;height:2rem;padding:0}\n"] }]
2625
2625
  }], ctorParameters: () => [{ type: i1$1.NgControl, decorators: [{
2626
2626
  type: Self
2627
2627
  }, {
@@ -3512,7 +3512,16 @@ class NggvDropdownListComponent {
3512
3512
  */
3513
3513
  this.dynamicPosition = false;
3514
3514
  this.selectedValueChanged = new EventEmitter();
3515
+ /**
3516
+ * Emitted when the dropdown is closed by user interactions (e.g. Escape or Tab) or other immediate close triggers.
3517
+ * This notifies external consumers that the dropdown was closed as a result of a user action.
3518
+ */
3515
3519
  this.closed = new EventEmitter();
3520
+ /**
3521
+ * Emitted after the dropdown has fully closed and internal cleanup has been performed.
3522
+ * Use this for post-close tasks that must run after subscriptions are torn down and resources released.
3523
+ */
3524
+ this.afterClose = new EventEmitter();
3516
3525
  /** The current active option based on numeric index. */
3517
3526
  this.activeIndex = -1;
3518
3527
  // Indicates whether the dropdown list should be displayed below ('bottom') or above ('top') the input, based on available space.
@@ -3570,6 +3579,7 @@ class NggvDropdownListComponent {
3570
3579
  }
3571
3580
  else {
3572
3581
  this.closed$.next(true);
3582
+ this.afterClose.emit();
3573
3583
  this.onClickSubscription?.unsubscribe();
3574
3584
  this.onKeyDownSubscription?.unsubscribe();
3575
3585
  this.onKeyUpSubscription?.unsubscribe();
@@ -3780,7 +3790,7 @@ class NggvDropdownListComponent {
3780
3790
  this.renderer.setStyle(dropdownList, 'max-height', `${maxDropdownHeight}px`);
3781
3791
  }
3782
3792
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvDropdownListComponent, deps: [{ token: TRANSLOCO_SCOPE, optional: true }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
3783
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvDropdownListComponent, selector: "nggv-dropdown-list", inputs: { expanded: "expanded", state: "state", scrollOffset: "scrollOffset", optionContentTpl: "optionContentTpl", groupLabelTpl: "groupLabelTpl", id: "id", thook: "thook", options: "options", textToHighlight: "textToHighlight", onlyEmitDistinctChanges: "onlyEmitDistinctChanges", selectWithSpace: "selectWithSpace", dynamicPosition: "dynamicPosition" }, outputs: { selectedValueChanged: "selectedValueChanged", closed: "closed" }, host: { properties: { "attr.id": "this.id", "attr.data-thook": "this.thook", "attr.data-position": "this.positionAttr" } }, viewQueries: [{ propertyName: "optionRefs", predicate: ["optionRefs"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-container *transloco=\"let t; read: scope\">\n <div class=\"visually-hidden\">{{ t(state?.label) }}</div>\n <ul\n class=\"gds-dropdown__options card options gds-reset\"\n [class.gds-dropdown__options-expanded]=\"expanded\"\n role=\"listbox\"\n tabindex=\"-1\"\n [attr.data-thook]=\"thook + '-options'\"\n [attr.aria-labelledby]=\"id + '-label'\"\n [attr.aria-activedescendant]=\"\n state ? id + '-option-' + state?.key : undefined\n \"\n >\n <ng-container *ngFor=\"let item of options\">\n <!-- OPTION -->\n <ng-container *ngIf=\"!isGroup(item)\">\n <ng-template\n *ngTemplateOutlet=\"listItemTemplate; context: { $implicit: item }\"\n ></ng-template>\n </ng-container>\n\n <!-- OPTION GROUP -->\n <li\n class=\"gds-dropdown__options__label group\"\n [attr.data-thook]=\"thook + '-option-group'\"\n *ngIf=\"isGroup(item)\"\n >\n <!-- group label template (default or custom) -->\n <ng-template\n *ngTemplateOutlet=\"listGroupTemplate; context: { $implicit: item }\"\n ></ng-template>\n\n <ul [attr.aria-disabled]=\"item.disabled\" class=\"gds-reset\">\n <ng-container *ngFor=\"let option of castGroup(item).options\">\n <ng-template\n *ngTemplateOutlet=\"\n listItemTemplate;\n context: { $implicit: option }\n \"\n ></ng-template>\n </ng-container>\n </ul>\n </li>\n </ng-container>\n </ul>\n\n <!-- TEMPLATE -->\n <ng-template #listItemTemplate let-option>\n <li\n #optionRefs\n *ngIf=\"!optionContentTpl\"\n tabindex=\"-1\"\n [id]=\"id + '-option-' + option.key\"\n class=\"gds-dropdown__options__label option\"\n role=\"option\"\n #liElem\n [attr.data-thook]=\"thook + '-option-' + option.key\"\n [attr.aria-disabled]=\"option.disabled\"\n [attr.aria-selected]=\"\n option.key === selectedValue?.key && !!selectedValue?.key\n \"\n [attr.aria-focus]=\"option.key === state?.key && !option.disabled\"\n [nggvTooltip]=\"isOverflow(liElem) ? t(option.label) : undefined\"\n (click)=\"updateState(option, $event)\"\n >\n <ng-template\n *ngTemplateOutlet=\"\n basicOptionContentTpl;\n context: { $implicit: option }\n \"\n >\n </ng-template>\n </li>\n <!-- Checking overflow on custom templates do not work skip adding nggvToolTip if custom template is provided -->\n <li\n #optionRefs\n *ngIf=\"!!optionContentTpl\"\n tabindex=\"-1\"\n [id]=\"id + '-option-' + option.key\"\n class=\"gds-dropdown__options__label option\"\n role=\"option\"\n #liElem\n [attr.data-thook]=\"thook + '-option-' + option.key\"\n [attr.aria-disabled]=\"option.disabled\"\n [attr.aria-selected]=\"\n option.key === selectedValue?.key && !!selectedValue?.key\n \"\n [attr.aria-focus]=\"option.key === state?.key && !option.disabled\"\n (click)=\"updateState(option, $event)\"\n >\n <ng-template\n *ngTemplateOutlet=\"optionContentTpl; context: { $implicit: option }\"\n >\n </ng-template>\n </li>\n </ng-template>\n\n <ng-template #listGroupTemplate let-item>\n <ng-container *ngIf=\"groupLabelTpl\">\n <ng-template\n *ngTemplateOutlet=\"groupLabelTpl; context: { $implicit: item }\"\n ></ng-template>\n </ng-container>\n <ng-container *ngIf=\"!groupLabelTpl\">\n <ng-template\n *ngTemplateOutlet=\"basicGroupLabelTpl; context: { $implicit: item }\"\n ></ng-template>\n </ng-container>\n </ng-template>\n\n <ng-template #basicOptionContentTpl let-option>\n <nggv-typeahead-highlight\n *ngIf=\"!!textToHighlight\"\n [textToHighlight]=\"textToHighlight\"\n [textContent]=\"t(option.label)\"\n >\n </nggv-typeahead-highlight>\n <ng-container *ngIf=\"!textToHighlight\">\n {{ t(option.label) }}\n </ng-container>\n </ng-template>\n\n <ng-template #basicGroupLabelTpl let-item>\n <div class=\"nggv-group-label\">{{ t(item.label) }}</div>\n </ng-template>\n</ng-container>\n", styles: [":host{--gds-ref-pallet-base300: hsl(0, 0%, 87%);--gds-ref-pallet-base400: hsl(0, 0%, 81%);--gds-ref-pallet-base500: hsl(0, 0%, 68%);--sg-z-index-dropdown: ;--sg-z-index-popover: 1060;--sg-z-index-dropdown-backdrop: 990;--sg-z-index-dropdown: 2000;--sg-popover-background: #fff;--sg-popover-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--text-primary-color: #333;position:absolute;bottom:0;transform:translateY(calc(100% + .5rem));z-index:var(--sg-z-index-dropdown)}:host .visually-hidden:not(:focus):not(:active){clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:host .hidden{visibility:hidden;display:none}:host ul[role=menu] [role=menuitem]{padding:.75rem;cursor:pointer}:host ul[role=menu] [role=menuitem]:hover,:host ul[role=menu] [role=menuitem]:focus-visible{background-color:var(--gds-sys-color-base-200)}:host ul[role=menu] [role=menuitem]:active{background-color:var(--gds-sys-color-base-300)}:host ul[role=menu] [role=menuitem]:focus{outline-color:#000;outline-offset:-.25rem}:host ul[role=listbox]{--z-index: var(--sg-z-index-popover);background-color:var(--sg-popover-background);flex-direction:column;justify-content:flex-end;inset:auto;z-index:var(--z-index);box-shadow:var(--sg-popover-box-shadow);color:var(--text-primary-color);padding:0;max-height:500px;overflow-y:auto;width:100%;overscroll-behavior:none;border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--text-primary-color);--sg-border-color: var(--text-primary-color);border-radius:var(--sg-border-radius)}:host ul[role=listbox] [role=option]{padding:.75rem 1rem;line-height:1.25;cursor:pointer}:host ul[role=listbox] [role=option]:hover,:host ul[role=listbox] [role=option]:focus-visible{background-color:var(--grey-400)}:host ul[role=listbox] [role=option]:active{background-color:var(--grey-400)}:host ul[role=listbox] [role=option]:focus{outline-color:#000;outline-offset:-.25rem}:host ul[role=listbox] [role=option].active.sg-highlighted,:host ul[role=listbox] [role=option][aria-selected=true]{background:var(--grey-1000);color:#fff}:host ul[role=listbox] .group ul{list-style-type:none;padding:0}:host ul[role=listbox] .group:hover{color:inherit;background-color:inherit}:host .sg-fieldset-container{overflow-y:auto}:host .sg-fieldset-container fieldset[role=listbox][aria-multiselectable=true] [role=option]{display:flex;width:100%}:host .sg-fieldset-container fieldset[role=listbox][aria-multiselectable=true] [role=option].active.sg-highlighted input[type=checkbox]~i{border-color:#007ac7!important;box-shadow:0 0 .25em .0625em #41b0ee;outline-color:transparent;outline-style:solid}:host .gds-dropdown__options{padding-left:0;margin-bottom:0;margin-top:0;display:flex;flex-direction:column;list-style:none;display:none}:host .gds-dropdown__options>li{padding-bottom:.5rem;padding-top:.5rem;border:0;display:block;position:relative}:host .gds-dropdown__options>li:before{font-weight:500;display:inline-block;left:0;position:absolute;text-align:center}:host .gds-dropdown__options-expanded{display:block}:host .gds-dropdown__options__label:hover{background-color:var(--gds-ref-pallet-base400)}:host .gds-dropdown__options__label:focus-visible,:host .gds-dropdown__options__label[aria-focus=true]{background-color:var(--gds-ref-pallet-base300)}:host .gds-dropdown__options__label:active{background-color:var(--gds-ref-pallet-base500)}:host .gds-dropdown__options__label:focus-visible{outline-color:#000;outline-offset:-.25rem}:host .gds-dropdown__options__label[aria-hidden=true]{display:none}:host .gds-dropdown__options__label[highlighted]{color:#fff}:host li+.group{padding-top:0}:host .nggv-group-label{cursor:pointer;background-color:#e7e7e7;padding-inline:1rem;padding-block:.5rem}:host[data-position=top]{top:auto;bottom:100%;transform:translateY(-.5rem)}:host[data-position=bottom]{bottom:0;transform:translateY(calc(100% + .5rem))}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: NggvTypeaheadHighlightComponent, selector: "nggv-typeahead-highlight", inputs: ["textContent", "textToHighlight"] }, { kind: "directive", type: i3$1.NggvTooltipDirective, selector: "[nggvTooltip]", inputs: ["nggvTooltip", "thook", "placement", "shown", "offset", "resizeThrottle", "tooltipId", "maxWidth"], outputs: ["nggvShow", "nggvHide"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }] }); }
3793
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvDropdownListComponent, selector: "nggv-dropdown-list", inputs: { expanded: "expanded", state: "state", scrollOffset: "scrollOffset", optionContentTpl: "optionContentTpl", groupLabelTpl: "groupLabelTpl", id: "id", thook: "thook", options: "options", textToHighlight: "textToHighlight", onlyEmitDistinctChanges: "onlyEmitDistinctChanges", selectWithSpace: "selectWithSpace", dynamicPosition: "dynamicPosition" }, outputs: { selectedValueChanged: "selectedValueChanged", closed: "closed", afterClose: "afterClose" }, host: { properties: { "attr.id": "this.id", "attr.data-thook": "this.thook", "attr.data-position": "this.positionAttr" } }, viewQueries: [{ propertyName: "optionRefs", predicate: ["optionRefs"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-container *transloco=\"let t; read: scope\">\n <div class=\"visually-hidden\">{{ t(state?.label) }}</div>\n <ul\n class=\"gds-dropdown__options card options gds-reset\"\n [class.gds-dropdown__options-expanded]=\"expanded\"\n role=\"listbox\"\n tabindex=\"-1\"\n [attr.data-thook]=\"thook + '-options'\"\n [attr.aria-labelledby]=\"id + '-label'\"\n [attr.aria-activedescendant]=\"\n state ? id + '-option-' + state?.key : undefined\n \"\n >\n <ng-container *ngFor=\"let item of options\">\n <!-- OPTION -->\n <ng-container *ngIf=\"!isGroup(item)\">\n <ng-template\n *ngTemplateOutlet=\"listItemTemplate; context: { $implicit: item }\"\n ></ng-template>\n </ng-container>\n\n <!-- OPTION GROUP -->\n <li\n class=\"gds-dropdown__options__label group\"\n [attr.data-thook]=\"thook + '-option-group'\"\n *ngIf=\"isGroup(item)\"\n >\n <!-- group label template (default or custom) -->\n <ng-template\n *ngTemplateOutlet=\"listGroupTemplate; context: { $implicit: item }\"\n ></ng-template>\n\n <ul [attr.aria-disabled]=\"item.disabled\" class=\"gds-reset\">\n <ng-container *ngFor=\"let option of castGroup(item).options\">\n <ng-template\n *ngTemplateOutlet=\"\n listItemTemplate;\n context: { $implicit: option }\n \"\n ></ng-template>\n </ng-container>\n </ul>\n </li>\n </ng-container>\n </ul>\n\n <!-- TEMPLATE -->\n <ng-template #listItemTemplate let-option>\n <li\n #optionRefs\n *ngIf=\"!optionContentTpl\"\n tabindex=\"-1\"\n [id]=\"id + '-option-' + option.key\"\n class=\"gds-dropdown__options__label option\"\n role=\"option\"\n #liElem\n [attr.data-thook]=\"thook + '-option-' + option.key\"\n [attr.aria-disabled]=\"option.disabled\"\n [attr.aria-selected]=\"\n option.key === selectedValue?.key && !!selectedValue?.key\n \"\n [attr.aria-focus]=\"option.key === state?.key && !option.disabled\"\n [nggvTooltip]=\"isOverflow(liElem) ? t(option.label) : undefined\"\n (click)=\"updateState(option, $event)\"\n >\n <ng-template\n *ngTemplateOutlet=\"\n basicOptionContentTpl;\n context: { $implicit: option }\n \"\n >\n </ng-template>\n </li>\n <!-- Checking overflow on custom templates do not work skip adding nggvToolTip if custom template is provided -->\n <li\n #optionRefs\n *ngIf=\"!!optionContentTpl\"\n tabindex=\"-1\"\n [id]=\"id + '-option-' + option.key\"\n class=\"gds-dropdown__options__label option\"\n role=\"option\"\n #liElem\n [attr.data-thook]=\"thook + '-option-' + option.key\"\n [attr.aria-disabled]=\"option.disabled\"\n [attr.aria-selected]=\"\n option.key === selectedValue?.key && !!selectedValue?.key\n \"\n [attr.aria-focus]=\"option.key === state?.key && !option.disabled\"\n (click)=\"updateState(option, $event)\"\n >\n <ng-template\n *ngTemplateOutlet=\"optionContentTpl; context: { $implicit: option }\"\n >\n </ng-template>\n </li>\n </ng-template>\n\n <ng-template #listGroupTemplate let-item>\n <ng-container *ngIf=\"groupLabelTpl\">\n <ng-template\n *ngTemplateOutlet=\"groupLabelTpl; context: { $implicit: item }\"\n ></ng-template>\n </ng-container>\n <ng-container *ngIf=\"!groupLabelTpl\">\n <ng-template\n *ngTemplateOutlet=\"basicGroupLabelTpl; context: { $implicit: item }\"\n ></ng-template>\n </ng-container>\n </ng-template>\n\n <ng-template #basicOptionContentTpl let-option>\n <nggv-typeahead-highlight\n *ngIf=\"!!textToHighlight\"\n [textToHighlight]=\"textToHighlight\"\n [textContent]=\"t(option.label)\"\n >\n </nggv-typeahead-highlight>\n <ng-container *ngIf=\"!textToHighlight\">\n {{ t(option.label) }}\n </ng-container>\n </ng-template>\n\n <ng-template #basicGroupLabelTpl let-item>\n <div class=\"nggv-group-label\">{{ t(item.label) }}</div>\n </ng-template>\n</ng-container>\n", styles: [":host{--gds-ref-pallet-base300: hsl(0, 0%, 87%);--gds-ref-pallet-base400: hsl(0, 0%, 81%);--gds-ref-pallet-base500: hsl(0, 0%, 68%);--sg-z-index-dropdown: ;--sg-z-index-popover: 1060;--sg-z-index-dropdown-backdrop: 990;--sg-z-index-dropdown: 2000;--sg-popover-background: #fff;--sg-popover-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--text-primary-color: #333;position:absolute;bottom:0;transform:translateY(calc(100% + .5rem));z-index:var(--sg-z-index-dropdown)}:host .visually-hidden:not(:focus):not(:active){clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:host .hidden{visibility:hidden;display:none}:host ul[role=menu] [role=menuitem]{padding:.75rem;cursor:pointer}:host ul[role=menu] [role=menuitem]:hover,:host ul[role=menu] [role=menuitem]:focus-visible{background-color:var(--gds-sys-color-base-200)}:host ul[role=menu] [role=menuitem]:active{background-color:var(--gds-sys-color-base-300)}:host ul[role=menu] [role=menuitem]:focus{outline-color:#000;outline-offset:-.25rem}:host ul[role=listbox]{--z-index: var(--sg-z-index-popover);background-color:var(--sg-popover-background);flex-direction:column;justify-content:flex-end;inset:auto;z-index:var(--z-index);box-shadow:var(--sg-popover-box-shadow);color:var(--text-primary-color);padding:0;max-height:500px;overflow-y:auto;width:100%;overscroll-behavior:none;border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--text-primary-color);--sg-border-color: var(--text-primary-color);border-radius:var(--sg-border-radius)}:host ul[role=listbox] [role=option]{padding:.75rem 1rem;line-height:1.25;cursor:pointer}:host ul[role=listbox] [role=option]:hover,:host ul[role=listbox] [role=option]:focus-visible{background-color:var(--grey-400)}:host ul[role=listbox] [role=option]:active{background-color:var(--grey-400)}:host ul[role=listbox] [role=option]:focus{outline-color:#000;outline-offset:-.25rem}:host ul[role=listbox] [role=option].active.sg-highlighted,:host ul[role=listbox] [role=option][aria-selected=true]{background:var(--grey-1000);color:#fff}:host ul[role=listbox] .group ul{list-style-type:none;padding:0}:host ul[role=listbox] .group:hover{color:inherit;background-color:inherit}:host .sg-fieldset-container{overflow-y:auto}:host .sg-fieldset-container fieldset[role=listbox][aria-multiselectable=true] [role=option]{display:flex;width:100%}:host .sg-fieldset-container fieldset[role=listbox][aria-multiselectable=true] [role=option].active.sg-highlighted input[type=checkbox]~i{border-color:#007ac7!important;box-shadow:0 0 .25em .0625em #41b0ee;outline-color:transparent;outline-style:solid}:host .gds-dropdown__options{padding-left:0;margin-bottom:0;margin-top:0;display:flex;flex-direction:column;list-style:none;display:none}:host .gds-dropdown__options>li{padding-bottom:.5rem;padding-top:.5rem;border:0;display:block;position:relative}:host .gds-dropdown__options>li:before{font-weight:500;display:inline-block;left:0;position:absolute;text-align:center}:host .gds-dropdown__options-expanded{display:block}:host .gds-dropdown__options__label:hover{background-color:var(--gds-ref-pallet-base400)}:host .gds-dropdown__options__label:focus-visible,:host .gds-dropdown__options__label[aria-focus=true]{background-color:var(--gds-ref-pallet-base300)}:host .gds-dropdown__options__label:active{background-color:var(--gds-ref-pallet-base500)}:host .gds-dropdown__options__label:focus-visible{outline-color:#000;outline-offset:-.25rem}:host .gds-dropdown__options__label[aria-hidden=true]{display:none}:host .gds-dropdown__options__label[highlighted]{color:#fff}:host li+.group{padding-top:0}:host .nggv-group-label{cursor:pointer;background-color:#e7e7e7;padding-inline:1rem;padding-block:.5rem}:host[data-position=top]{top:auto;bottom:100%;transform:translateY(-.5rem)}:host[data-position=bottom]{bottom:0;transform:translateY(calc(100% + .5rem))}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: NggvTypeaheadHighlightComponent, selector: "nggv-typeahead-highlight", inputs: ["textContent", "textToHighlight"] }, { kind: "directive", type: i3$1.NggvTooltipDirective, selector: "[nggvTooltip]", inputs: ["nggvTooltip", "thook", "placement", "shown", "offset", "resizeThrottle", "tooltipId", "maxWidth"], outputs: ["nggvShow", "nggvHide"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }] }); }
3784
3794
  }
3785
3795
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvDropdownListComponent, decorators: [{
3786
3796
  type: Component,
@@ -3830,6 +3840,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
3830
3840
  type: Output
3831
3841
  }], closed: [{
3832
3842
  type: Output
3843
+ }], afterClose: [{
3844
+ type: Output
3833
3845
  }] } });
3834
3846
 
3835
3847
  /**
@@ -4058,7 +4070,7 @@ class NggvDropdownComponent extends NggvBaseControlValueAccessorComponent$1 {
4058
4070
  return !('options' in option);
4059
4071
  }
4060
4072
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvDropdownComponent, deps: [{ token: i1$1.NgControl, optional: true, self: true }, { token: TRANSLOCO_SCOPE, optional: true }, { token: i0.ChangeDetectorRef }, { token: i2$2.DropdownUtils }], target: i0.ɵɵFactoryTarget.Component }); }
4061
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvDropdownComponent, selector: "nggv-dropdown", inputs: { thook: "thook", size: "size", placeholder: "placeholder", ariaLabel: "ariaLabel", closeOnScroll: "closeOnScroll", options: "options", scrollOffset: "scrollOffset", allowControlNullishOption: "allowControlNullishOption", textToHighlight: "textToHighlight", selectOnSingleOption: "selectOnSingleOption", selectWithSpace: "selectWithSpace", onlyHandleDistinctChanges: "onlyHandleDistinctChanges" }, outputs: { expandedChange: "expandedChange" }, host: { listeners: { "keyup": "onKeyUp($event)" }, properties: { "attr.data-thook": "this.thook", "class.small": "this.isSmall", "class.large": "this.isLarge" } }, queries: [{ propertyName: "selectedContentTpl", first: true, predicate: ["selectedTpl"], descendants: true, read: TemplateRef }, { propertyName: "optionContentTpl", first: true, predicate: ["optionTpl"], descendants: true, read: TemplateRef }, { propertyName: "groupLabelTpl", first: true, predicate: ["groupLabelTpl"], descendants: true, read: TemplateRef }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<!-- LABEL -->\n<ng-container *transloco=\"let t; read: scope\">\n <label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-toggle'\"\n *ngIf=\"labelContentTpl || label\"\n >\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n </label>\n\n <!-- DESCRIPTION -->\n <div class=\"description\" *ngIf=\"description\">{{ description }}</div>\n\n <!-- LOCKED INPUT -->\n <ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n [attr.aria-labelledby]=\"id + '-label ' + id + '-input'\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n <ng-template\n *ngTemplateOutlet=\"\n selectedContentTpl || defaultSelectedContentTpl;\n context: { $implicit: state }\n \"\n >\n </ng-template>\n </ng-container>\n </div>\n </ng-template>\n </ng-container>\n\n <!-- INPUT -->\n <ng-container *ngIf=\"!locked\">\n <div class=\"gds-input-wrapper dropdown-wrapper\">\n <div #input [id]=\"id + '-input'\" class=\"dropdown\">\n <button\n [id]=\"id + '-toggle'\"\n [disabled]=\"disabled\"\n type=\"button\"\n class=\"nggv-field-dropdown__label toggle\"\n [class.nggv-field--error]=\"invalid\"\n role=\"combobox\"\n aria-owns=\"listbox\"\n aria-haspopup=\"listbox\"\n aria-controls=\"listbox\"\n [attr.data-thook]=\"thook + '-toggle'\"\n [attr.aria-expanded]=\"expanded\"\n [attr.aria-labelledby]=\"\n ariaLabel ? null : id + '-label ' + id + '-toggle'\n \"\n [attr.aria-label]=\"ariaLabel || null\"\n (click)=\"toggleDropdown()\"\n >\n <span>\n <ng-template\n *ngTemplateOutlet=\"\n selectedContentTpl || defaultSelectedContentTpl;\n context: { $implicit: state }\n \"\n >\n </ng-template>\n </span>\n </button>\n <nggv-dropdown-list\n #dropDownList\n [options]=\"options\"\n [scrollOffset]=\"scrollOffset\"\n [state]=\"state\"\n [expanded]=\"expanded\"\n [optionContentTpl]=\"optionContentTpl\"\n [groupLabelTpl]=\"groupLabelTpl\"\n [textToHighlight]=\"textToHighlight\"\n [onlyEmitDistinctChanges]=\"onlyHandleDistinctChanges\"\n [selectWithSpace]=\"selectWithSpace\"\n [dynamicPosition]=\"true\"\n (closed)=\"setExpanded(false)\"\n (selectedValueChanged)=\"onSelectChange($event)\"\n >\n </nggv-dropdown-list>\n </div>\n <!-- ERRORS -->\n <div class=\"gds-form-item__footer error-wrapper\">\n <span\n class=\"form-info form-info--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && (error || ngControl?.invalid)\"\n >\n <span class=\"error-icon\">\n <gds-icon-triangle-exclamation\n width=\"16\"\n height=\"16\"\n [solid]=\"true\"\n *nggCoreElement\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n *ngIf=\"error; else errorsRef\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n </span>\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </div>\n <!-- CHILDREN -->\n <ng-content></ng-content>\n </div>\n </ng-container>\n\n <ng-template #defaultSelectedContentTpl let-state>\n <!-- eslint-disable-next-line @angular-eslint/template/eqeqeq -->\n {{ state?.key != null && state?.label ? t(state.label) : placeholder }}\n </ng-template>\n</ng-container>\n", styles: [":host{--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-border-color: #868686;--text-primary-color: #333;--sg-form-control-bg: #fff;--grey-000: hsl(0 0% 100%);--grey-100: hsl(0, 0%, 97%);--grey-200: hsl(0, 0%, 91%);--grey-300: hsl(0, 0%, 87%);--grey-400: hsl(0, 0%, 81%);--grey-500: hsl(0, 0%, 68%);--grey-600: hsl(0, 0%, 53%);--grey-700: hsl(0, 0%, 29%);--grey-800: hsl(0, 0%, 20%);--grey-900: hsl(0, 0%, 10%);--grey-1000: hsl(0 0% 0%);display:flex;flex-direction:column;max-width:100%;position:relative;width:100%;z-index:0;position:initial}:host label{display:block;font-weight:500;line-height:1.25rem;width:100%}:host label+.gds-input-wrapper,:host label+.nggv-field--locked{margin-top:.5rem}:host .description{font-size:.875rem;margin-bottom:.5rem;line-height:1.25rem;width:100%}:host:not(:last-child){margin-bottom:1.5rem}:host .gds-form-item__header{display:flex}:host .gds-form-item__header .form-info{font-weight:400}:host .gds-form-item__header button.icon.small{margin-top:-.5rem;margin-right:-.5rem}:host .gds-form-item__labels{flex:1;margin-bottom:.5rem}:host .gds-form-item__labels .form-info{margin-bottom:0}:host .gds-form-item__labels .form-info a:link:not(.button,[aria-disabled]){color:#0062bc}:host .gds-form-item__labels>*{width:100%;display:block}:host .gds-form-item__expandable-info{overflow:hidden;font-size:.875rem;line-height:1.25rem;transition:height .3s cubic-bezier(.23,1,.32,1)}:host .gds-form-item__expandable-info>div{padding-bottom:.5rem}:host .gds-form-item__backdrop{position:absolute;inset:0;background:var(--gds-sys-color-base-100);border-radius:2px;z-index:-1;margin:-1rem;opacity:0;transition:all .3s cubic-bezier(.23,1,.32,1);border:1px solid transparent}@media (prefers-reduced-motion: reduce){:host .gds-form-item__backdrop{transition:none}}:host:has([aria-expanded=true]) .gds-form-item__backdrop{opacity:1;border-radius:.25rem;border-color:var(--gds-sys-color-base-600)}:host .gds-form-item__footer:not(:empty){margin-top:.5rem;display:flex;column-gap:.5rem}:host .gds-form-item__footer:not(:empty)>span,:host .gds-form-item__footer:not(:empty)>.form-info{font-weight:500;line-height:1.125}:host:not(:last-child){margin-bottom:unset}:host .gds-field-label--optional{font-weight:400}:host button{background-color:transparent;border:0;cursor:pointer;font-family:inherit;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--grey-600);--sg-border-color: var(--grey-600);background:var(--sg-form-control-bg);color:var(--text-primary-color);min-height:2.75rem;display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;max-width:100%;font-size:1rem;font-weight:400;line-height:1.125;text-align:left;width:100%}:host button:focus{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host button{min-width:100%}}:host button>span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host button:after{margin-left:.5rem;margin-right:.5rem;border-bottom:solid 2px var(--text-primary-color);border-left:solid 2px var(--text-primary-color);content:\"\";display:block;height:.5rem;width:.5rem;position:relative;top:-.15rem;transform:translate(75%) rotate3d(0,0,1,-45deg) scaleZ(-1);transition:transform .3s ease-in;flex-shrink:0}:host button[aria-expanded=true]:after{transform:translate(75%,6px) rotate3d(0,0,1,-45deg) scale3d(-1,-1,1)}:host button:hover:after{border-color:currentColor}:host button:disabled{--background: var(--grey-500)}:host button span{width:100%;white-space:nowrap;display:block;text-overflow:ellipsis}:host button.small{font-size:.875rem}:host button:hover{background:#e7e7e7}:host button:active{background:inherit;color:inherit;border-color:inherit}:host button:disabled,:host button.disabled{--text-primary-color: var(--grey-600);background:var(--grey-300);color:var(--grey-600);cursor:not-allowed}:host button.nggv-field--error{border-bottom:2px solid #9f000a}:host .gds-form-item__footer .form-info{font-weight:500;font-size:.875rem}:host .gds-form-item__footer .form-info--error{display:flex;align-items:flex-start;gap:.5em;color:#9f000a}:host .gds-form-item__footer .form-info--error .error-icon{align-items:center}:host .dropdown-wrapper{position:relative}:host .dropdown{width:100%;position:relative}:host .dropdown nggv-dropdown-list{width:100%}:host.small label{line-height:1rem;font-size:.875rem}:host.small label+.gds-input-wrapper,:host.small label+.nggv-field--locked{margin-top:.25rem}:host.small .description{font-size:.875rem;line-height:1rem;margin-bottom:.25rem}:host.small button{font-size:.875rem;line-height:1rem;padding:.38rem .5rem;min-height:2rem}:host.small .gds-form-item__footer:not(:empty){margin-top:.25rem}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4.NggCoreElementDirective, selector: "[nggCoreElement]" }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "component", type: NggvDropdownListComponent, selector: "nggv-dropdown-list", inputs: ["expanded", "state", "scrollOffset", "optionContentTpl", "groupLabelTpl", "id", "thook", "options", "textToHighlight", "onlyEmitDistinctChanges", "selectWithSpace", "dynamicPosition"], outputs: ["selectedValueChanged", "closed"] }] }); }
4073
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvDropdownComponent, selector: "nggv-dropdown", inputs: { thook: "thook", size: "size", placeholder: "placeholder", ariaLabel: "ariaLabel", closeOnScroll: "closeOnScroll", options: "options", scrollOffset: "scrollOffset", allowControlNullishOption: "allowControlNullishOption", textToHighlight: "textToHighlight", selectOnSingleOption: "selectOnSingleOption", selectWithSpace: "selectWithSpace", onlyHandleDistinctChanges: "onlyHandleDistinctChanges" }, outputs: { expandedChange: "expandedChange" }, host: { listeners: { "keyup": "onKeyUp($event)" }, properties: { "attr.data-thook": "this.thook", "class.small": "this.isSmall", "class.large": "this.isLarge" } }, queries: [{ propertyName: "selectedContentTpl", first: true, predicate: ["selectedTpl"], descendants: true, read: TemplateRef }, { propertyName: "optionContentTpl", first: true, predicate: ["optionTpl"], descendants: true, read: TemplateRef }, { propertyName: "groupLabelTpl", first: true, predicate: ["groupLabelTpl"], descendants: true, read: TemplateRef }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<!-- LABEL -->\n<ng-container *transloco=\"let t; read: scope\">\n <label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-toggle'\"\n *ngIf=\"labelContentTpl || label\"\n >\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n </label>\n\n <!-- DESCRIPTION -->\n <div class=\"description\" *ngIf=\"description\">{{ description }}</div>\n\n <!-- LOCKED INPUT -->\n <ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n [attr.aria-labelledby]=\"id + '-label ' + id + '-input'\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n <ng-template\n *ngTemplateOutlet=\"\n selectedContentTpl || defaultSelectedContentTpl;\n context: { $implicit: state }\n \"\n >\n </ng-template>\n </ng-container>\n </div>\n </ng-template>\n </ng-container>\n\n <!-- INPUT -->\n <ng-container *ngIf=\"!locked\">\n <div class=\"gds-input-wrapper dropdown-wrapper\">\n <div #input [id]=\"id + '-input'\" class=\"dropdown\">\n <button\n [id]=\"id + '-toggle'\"\n [disabled]=\"disabled\"\n type=\"button\"\n class=\"nggv-field-dropdown__label toggle\"\n [class.nggv-field--error]=\"invalid\"\n role=\"combobox\"\n aria-owns=\"listbox\"\n aria-haspopup=\"listbox\"\n aria-controls=\"listbox\"\n [attr.data-thook]=\"thook + '-toggle'\"\n [attr.aria-expanded]=\"expanded\"\n [attr.aria-labelledby]=\"\n ariaLabel ? null : id + '-label ' + id + '-toggle'\n \"\n [attr.aria-label]=\"ariaLabel || null\"\n (click)=\"toggleDropdown()\"\n >\n <span>\n <ng-template\n *ngTemplateOutlet=\"\n selectedContentTpl || defaultSelectedContentTpl;\n context: { $implicit: state }\n \"\n >\n </ng-template>\n </span>\n </button>\n <nggv-dropdown-list\n #dropDownList\n [options]=\"options\"\n [scrollOffset]=\"scrollOffset\"\n [state]=\"state\"\n [expanded]=\"expanded\"\n [optionContentTpl]=\"optionContentTpl\"\n [groupLabelTpl]=\"groupLabelTpl\"\n [textToHighlight]=\"textToHighlight\"\n [onlyEmitDistinctChanges]=\"onlyHandleDistinctChanges\"\n [selectWithSpace]=\"selectWithSpace\"\n [dynamicPosition]=\"true\"\n (closed)=\"setExpanded(false)\"\n (selectedValueChanged)=\"onSelectChange($event)\"\n >\n </nggv-dropdown-list>\n </div>\n <!-- ERRORS -->\n <div class=\"gds-form-item__footer error-wrapper\">\n <span\n class=\"form-info form-info--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && (error || ngControl?.invalid)\"\n >\n <span class=\"error-icon\">\n <gds-icon-triangle-exclamation\n width=\"16\"\n height=\"16\"\n [solid]=\"true\"\n *nggCoreElement\n ></gds-icon-triangle-exclamation>\n </span>\n <span\n *ngIf=\"error; else errorsRef\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n </span>\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </div>\n <!-- CHILDREN -->\n <ng-content></ng-content>\n </div>\n </ng-container>\n\n <ng-template #defaultSelectedContentTpl let-state>\n <!-- eslint-disable-next-line @angular-eslint/template/eqeqeq -->\n {{ state?.key != null && state?.label ? t(state.label) : placeholder }}\n </ng-template>\n</ng-container>\n", styles: [":host{--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-border-color: #868686;--text-primary-color: #333;--sg-form-control-bg: #fff;--grey-000: hsl(0 0% 100%);--grey-100: hsl(0, 0%, 97%);--grey-200: hsl(0, 0%, 91%);--grey-300: hsl(0, 0%, 87%);--grey-400: hsl(0, 0%, 81%);--grey-500: hsl(0, 0%, 68%);--grey-600: hsl(0, 0%, 53%);--grey-700: hsl(0, 0%, 29%);--grey-800: hsl(0, 0%, 20%);--grey-900: hsl(0, 0%, 10%);--grey-1000: hsl(0 0% 0%);display:flex;flex-direction:column;max-width:100%;position:relative;width:100%;z-index:0;position:initial}:host label{display:block;font-weight:500;line-height:1.25rem;width:100%}:host label+.gds-input-wrapper,:host label+.nggv-field--locked{margin-top:.5rem}:host .description{font-size:.875rem;margin-bottom:.5rem;line-height:1.25rem;width:100%}:host:not(:last-child){margin-bottom:1.5rem}:host .gds-form-item__header{display:flex}:host .gds-form-item__header .form-info{font-weight:400}:host .gds-form-item__header button.icon.small{margin-top:-.5rem;margin-right:-.5rem}:host .gds-form-item__labels{flex:1;margin-bottom:.5rem}:host .gds-form-item__labels .form-info{margin-bottom:0}:host .gds-form-item__labels .form-info a:link:not(.button,[aria-disabled]){color:#0062bc}:host .gds-form-item__labels>*{width:100%;display:block}:host .gds-form-item__expandable-info{overflow:hidden;font-size:.875rem;line-height:1.25rem;transition:height .3s cubic-bezier(.23,1,.32,1)}:host .gds-form-item__expandable-info>div{padding-bottom:.5rem}:host .gds-form-item__backdrop{position:absolute;inset:0;background:var(--gds-sys-color-base-100);border-radius:2px;z-index:-1;margin:-1rem;opacity:0;transition:all .3s cubic-bezier(.23,1,.32,1);border:1px solid transparent}@media (prefers-reduced-motion: reduce){:host .gds-form-item__backdrop{transition:none}}:host:has([aria-expanded=true]) .gds-form-item__backdrop{opacity:1;border-radius:.25rem;border-color:var(--gds-sys-color-base-600)}:host .gds-form-item__footer:not(:empty){margin-top:.5rem;display:flex;column-gap:.5rem}:host .gds-form-item__footer:not(:empty)>span,:host .gds-form-item__footer:not(:empty)>.form-info{font-weight:500;line-height:1.125}:host:not(:last-child){margin-bottom:unset}:host .gds-field-label--optional{font-weight:400}:host button{background-color:transparent;border:0;cursor:pointer;font-family:inherit;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--grey-600);--sg-border-color: var(--grey-600);background:var(--sg-form-control-bg);color:var(--text-primary-color);min-height:2.75rem;display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;max-width:100%;font-size:1rem;font-weight:400;line-height:1.125;text-align:left;width:100%}:host button:focus{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host button{min-width:100%}}:host button>span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host button:after{margin-left:.5rem;margin-right:.5rem;border-bottom:solid 2px var(--text-primary-color);border-left:solid 2px var(--text-primary-color);content:\"\";display:block;height:.5rem;width:.5rem;position:relative;top:-.15rem;transform:translate(75%) rotate3d(0,0,1,-45deg) scaleZ(-1);transition:transform .3s ease-in;flex-shrink:0}:host button[aria-expanded=true]:after{transform:translate(75%,6px) rotate3d(0,0,1,-45deg) scale3d(-1,-1,1)}:host button:hover:after{border-color:currentColor}:host button:disabled{--background: var(--grey-500)}:host button span{width:100%;white-space:nowrap;display:block;text-overflow:ellipsis}:host button.small{font-size:.875rem}:host button:hover{background:#e7e7e7}:host button:active{background:inherit;color:inherit;border-color:inherit}:host button:disabled,:host button.disabled{--text-primary-color: var(--grey-600);background:var(--grey-300);color:var(--grey-600);cursor:not-allowed}:host button.nggv-field--error{border-bottom:2px solid #9f000a}:host .gds-form-item__footer .form-info{font-weight:500;font-size:.875rem}:host .gds-form-item__footer .form-info--error{display:flex;align-items:flex-start;gap:.5em;color:#9f000a}:host .gds-form-item__footer .form-info--error .error-icon{align-items:center}:host .dropdown-wrapper{position:relative}:host .dropdown{width:100%;position:relative}:host .dropdown nggv-dropdown-list{width:100%}:host.small label{line-height:1rem;font-size:.875rem}:host.small label+.gds-input-wrapper,:host.small label+.nggv-field--locked{margin-top:.25rem}:host.small .description{font-size:.875rem;line-height:1rem;margin-bottom:.25rem}:host.small button{font-size:.875rem;line-height:1rem;padding:.38rem .5rem;min-height:2rem}:host.small .gds-form-item__footer:not(:empty){margin-top:.25rem}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4.NggCoreElementDirective, selector: "[nggCoreElement]" }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "component", type: NggvDropdownListComponent, selector: "nggv-dropdown-list", inputs: ["expanded", "state", "scrollOffset", "optionContentTpl", "groupLabelTpl", "id", "thook", "options", "textToHighlight", "onlyEmitDistinctChanges", "selectWithSpace", "dynamicPosition"], outputs: ["selectedValueChanged", "closed", "afterClose"] }] }); }
4062
4074
  }
4063
4075
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvDropdownComponent, decorators: [{
4064
4076
  type: Component,
@@ -5029,11 +5041,11 @@ class NggvInputComponent extends NggvBaseControlValueAccessorComponent$1 {
5029
5041
  this.inputChange$.next(this.state);
5030
5042
  }
5031
5043
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvInputComponent, deps: [{ token: i1$1.NgControl, optional: true, self: true }, { token: TRANSLOCO_SCOPE, optional: true }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
5032
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvInputComponent, selector: "nggv-input", inputs: { size: "size", thook: "thook", type: "type", placeholder: "placeholder", autocomplete: "autocomplete", readonly: "readonly", email: "email", min: "min", max: "max", step: "step", minLength: "minLength", minlength: "minlength", maxLength: "maxLength", maxlength: "maxlength", showCharacterCountdown: "showCharacterCountdown", pattern: "pattern", debounceTime: "debounceTime", inputMask: "inputMask" }, outputs: { nggvInput: "nggvInput" }, host: { properties: { "class": "this.size", "attr.data-thook": "this.thook" } }, usesInheritance: true, ngImport: i0, template: "<!-- LABEL -->\n<label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n *transloco=\"let t; read: scope\"\n>\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n</label>\n\n<!-- DESCRIPTION -->\n<div\n class=\"form-info description hide-if-empty\"\n *ngIf=\"description && descriptionIsVisible\"\n>\n {{ description }}\n</div>\n\n<!-- LOCKED INPUT -->\n<ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n <ng-container *ngIf=\"!inputMask\">\n {{ state }}\n </ng-container>\n <ng-container *ngIf=\"!!inputMask\">\n {{ state | nggvInputMaskFormat: inputMask }}\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n</ng-container>\n\n<!-- INPUT WRAPPER -->\n<ng-container *ngIf=\"!locked\">\n <div class=\"gds-input-wrapper\" [class.nggv-field--error]=\"invalid\">\n <div class=\"input-group-prefix hide-if-empty\">\n <ng-content select=\"[slot='prefix']\"></ng-content>\n </div>\n\n <!-- INPUT FIELD -->\n <div class=\"input-group\" *ngIf=\"!inputMask\">\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n [attr.type]=\"type\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [attr.email]=\"email\"\n [attr.aria-describedby]=\"id + '-message'\"\n [min]=\"min\"\n [max]=\"max\"\n [step]=\"step\"\n [attr.maxlength]=\"maxlength\"\n [attr.minlength]=\"minlength\"\n [pattern]=\"pattern\"\n title=\"\"\n [disabled]=\"disabled\"\n [autocomplete]=\"autocomplete\"\n [autofocus]=\"autofocus\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [value]=\"state\"\n (input)=\"onInput($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n </div>\n\n <!-- INPUT FIELD WITH MASK -->\n <div\n class=\"input-group\"\n *ngIf=\"!!inputMask && (hideInput$ | async) === false\"\n >\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [attr.aria-describedby]=\"id + '-message'\"\n [nggvInputMask]=\"inputMask\"\n title=\"\"\n [formControl]=\"control\"\n />\n </div>\n\n <div class=\"input-group-suffix hide-if-empty\">\n <ng-content select=\"[slot='suffix']\"></ng-content>\n <ng-content></ng-content>\n </div>\n </div>\n\n <!-- ERRORS -->\n <div\n class=\"gds-form-item__footer error-wrapper\"\n *transloco=\"let t; read: scope\"\n >\n <span\n class=\"form-info form-info--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && (error || ngControl?.invalid)\"\n >\n <span class=\"error-icon\">\n <gds-icon-triangle-exclamation\n width=\"16\"\n height=\"16\"\n solid=\"true\"\n *nggCoreElement\n ></gds-icon-triangle-exclamation>\n </span>\n\n <span\n *ngIf=\"error; else errorsRef\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n\n <ng-container *ngIf=\"!inputMask && hasMaxLength && showCharacterCountdown\">\n <span\n *nggvCharacterCountdown=\"\n maxlength;\n currentLength: (inputRef?.nativeElement?.value ?? '').length;\n charactersLeft as charactersLeft\n \"\n class=\"form-info form-info--countdown\"\n style=\"text-align: right\"\n >\n {{ charactersLeft }} {{ t('label.maxlength') }}\n </span>\n </ng-container>\n </div>\n</ng-container>\n", styles: [":host{--sg-text-primary: #333;--sg-form-control-bg: #fff;--gds-ref-pallet-base100: hsl(0, 0%, 97%);--sg-border-radius: 4px;--sg-border-width: 1px;--sg-border-color: #868686;display:flex;flex-direction:column;max-width:100%;position:relative;width:100%;z-index:0}:host:not(:last-child){margin-bottom:1.5rem}:host .gds-form-item__header{display:flex}:host .gds-form-item__header .form-info{font-weight:400}:host .gds-form-item__header button.icon.small{margin-top:-.5rem;margin-right:-.5rem}:host .gds-form-item__labels{flex:1;margin-bottom:.5rem}:host .gds-form-item__labels .form-info{margin-bottom:0}:host .gds-form-item__labels .form-info a:link:not(.button,[aria-disabled]){color:#0062bc}:host .gds-form-item__labels>*{width:100%;display:block}:host .gds-form-item__expandable-info{overflow:hidden;font-size:.875rem;line-height:1.25rem;transition:height .3s cubic-bezier(.23,1,.32,1)}:host .gds-form-item__expandable-info>div{padding-bottom:.5rem}:host .gds-form-item__backdrop{position:absolute;inset:0;background:var(--gds-sys-color-base-100);border-radius:2px;z-index:-1;margin:-1rem;opacity:0;transition:all .3s cubic-bezier(.23,1,.32,1);border:1px solid transparent}@media (prefers-reduced-motion: reduce){:host .gds-form-item__backdrop{transition:none}}:host:has([aria-expanded=true]) .gds-form-item__backdrop{opacity:1;border-radius:.25rem;border-color:var(--gds-sys-color-base-600)}:host .gds-form-item__footer:not(:empty){margin-top:.5rem;display:flex;column-gap:.5rem}:host .gds-form-item__footer:not(:empty)>span,:host .gds-form-item__footer:not(:empty)>.form-info{font-weight:500;line-height:1.125}:host *{box-sizing:border-box}:host .gds-form-item__footer .form-info{font-weight:500}:host .gds-form-item__footer .form-info.form-info--countdown{font-weight:400}:host .gds-form-item__footer .form-info--error{display:flex;align-items:flex-start;gap:.5em;color:#9f000a}:host .gds-form-item__footer .form-info--error .error-icon{align-items:center}:host .hide-if-empty:empty{display:none}:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);background-color:var(--sg-form-control-bg);color:var(--sg-text-primary);min-height:2.75rem;display:flex;align-items:center;justify-content:center}:host input:not([type]):focus:not(:focus-visible),:host input[type=date]:focus:not(:focus-visible),:host input[type=datetime]:focus:not(:focus-visible),:host input[type=datetime-local]:focus:not(:focus-visible),:host input[type=email]:focus:not(:focus-visible),:host input[type=month]:focus:not(:focus-visible),:host input[type=number]:focus:not(:focus-visible),:host input[type=password]:focus:not(:focus-visible),:host input[type=search]:focus:not(:focus-visible),:host input[type=tel]:focus:not(:focus-visible),:host input[type=text]:focus:not(:focus-visible),:host input[type=time]:focus:not(:focus-visible),:host input[type=url]:focus:not(:focus-visible),:host input[type=week]:focus:not(:focus-visible){box-shadow:none;outline:0}:host input:not([type]):focus,:host input:not([type]):focus-visible,:host input[type=date]:focus,:host input[type=date]:focus-visible,:host input[type=datetime]:focus,:host input[type=datetime]:focus-visible,:host input[type=datetime-local]:focus,:host input[type=datetime-local]:focus-visible,:host input[type=email]:focus,:host input[type=email]:focus-visible,:host input[type=month]:focus,:host input[type=month]:focus-visible,:host input[type=number]:focus,:host input[type=number]:focus-visible,:host input[type=password]:focus,:host input[type=password]:focus-visible,:host input[type=search]:focus,:host input[type=search]:focus-visible,:host input[type=tel]:focus,:host input[type=tel]:focus-visible,:host input[type=text]:focus,:host input[type=text]:focus-visible,:host input[type=time]:focus,:host input[type=time]:focus-visible,:host input[type=url]:focus,:host input[type=url]:focus-visible,:host input[type=week]:focus,:host input[type=week]:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host input:not([type]).small,:host input[type=date].small,:host input[type=datetime].small,:host input[type=datetime-local].small,:host input[type=email].small,:host input[type=month].small,:host input[type=number].small,:host input[type=password].small,:host input[type=search].small,:host input[type=tel].small,:host input[type=text].small,:host input[type=time].small,:host input[type=url].small,:host input[type=week].small{min-height:2rem;padding:.25rem .75rem;line-height:1rem}@media screen and (-ms-high-contrast: active){:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{border:2px solid currentcolor}}:host input:not([type]):disabled,:host input:not([type]).disabled,:host input:not([type])[aria-disabled=true],:host input[type=date]:disabled,:host input[type=date].disabled,:host input[type=date][aria-disabled=true],:host input[type=datetime]:disabled,:host input[type=datetime].disabled,:host input[type=datetime][aria-disabled=true],:host input[type=datetime-local]:disabled,:host input[type=datetime-local].disabled,:host input[type=datetime-local][aria-disabled=true],:host input[type=email]:disabled,:host input[type=email].disabled,:host input[type=email][aria-disabled=true],:host input[type=month]:disabled,:host input[type=month].disabled,:host input[type=month][aria-disabled=true],:host input[type=number]:disabled,:host input[type=number].disabled,:host input[type=number][aria-disabled=true],:host input[type=password]:disabled,:host input[type=password].disabled,:host input[type=password][aria-disabled=true],:host input[type=search]:disabled,:host input[type=search].disabled,:host input[type=search][aria-disabled=true],:host input[type=tel]:disabled,:host input[type=tel].disabled,:host input[type=tel][aria-disabled=true],:host input[type=text]:disabled,:host input[type=text].disabled,:host input[type=text][aria-disabled=true],:host input[type=time]:disabled,:host input[type=time].disabled,:host input[type=time][aria-disabled=true],:host input[type=url]:disabled,:host input[type=url].disabled,:host input[type=url][aria-disabled=true],:host input[type=week]:disabled,:host input[type=week].disabled,:host input[type=week][aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host input:not([type]):disabled::placeholder,:host input:not([type]).disabled::placeholder,:host input:not([type])[aria-disabled=true]::placeholder,:host input[type=date]:disabled::placeholder,:host input[type=date].disabled::placeholder,:host input[type=date][aria-disabled=true]::placeholder,:host input[type=datetime]:disabled::placeholder,:host input[type=datetime].disabled::placeholder,:host input[type=datetime][aria-disabled=true]::placeholder,:host input[type=datetime-local]:disabled::placeholder,:host input[type=datetime-local].disabled::placeholder,:host input[type=datetime-local][aria-disabled=true]::placeholder,:host input[type=email]:disabled::placeholder,:host input[type=email].disabled::placeholder,:host input[type=email][aria-disabled=true]::placeholder,:host input[type=month]:disabled::placeholder,:host input[type=month].disabled::placeholder,:host input[type=month][aria-disabled=true]::placeholder,:host input[type=number]:disabled::placeholder,:host input[type=number].disabled::placeholder,:host input[type=number][aria-disabled=true]::placeholder,:host input[type=password]:disabled::placeholder,:host input[type=password].disabled::placeholder,:host input[type=password][aria-disabled=true]::placeholder,:host input[type=search]:disabled::placeholder,:host input[type=search].disabled::placeholder,:host input[type=search][aria-disabled=true]::placeholder,:host input[type=tel]:disabled::placeholder,:host input[type=tel].disabled::placeholder,:host input[type=tel][aria-disabled=true]::placeholder,:host input[type=text]:disabled::placeholder,:host input[type=text].disabled::placeholder,:host input[type=text][aria-disabled=true]::placeholder,:host input[type=time]:disabled::placeholder,:host input[type=time].disabled::placeholder,:host input[type=time][aria-disabled=true]::placeholder,:host input[type=url]:disabled::placeholder,:host input[type=url].disabled::placeholder,:host input[type=url][aria-disabled=true]::placeholder,:host input[type=week]:disabled::placeholder,:host input[type=week].disabled::placeholder,:host input[type=week][aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host input:not([type]):hover,:host input[type=date]:hover,:host input[type=datetime]:hover,:host input[type=datetime-local]:hover,:host input[type=email]:hover,:host input[type=month]:hover,:host input[type=number]:hover,:host input[type=password]:hover,:host input[type=search]:hover,:host input[type=tel]:hover,:host input[type=text]:hover,:host input[type=time]:hover,:host input[type=url]:hover,:host input[type=week]:hover{background-color:var(--gds-sys-color-base-200)}:host input[type=number]{-moz-appearance:textfield}:host input[type=number]::-webkit-outer-spin-button,:host input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host input{width:100%;line-height:18px;font-size:1rem;font-family:inherit}:host .gds-input-wrapper{position:relative;transition:all .2s ease-in-out,outline-offset 0s,outline-width 0s;border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;display:flex;flex-direction:row}:host .gds-input-wrapper:before{background:transparent;border-radius:0 0 4px 4px;clip-path:inset(4px 0 0 0);content:\"\";display:block;height:4px;position:absolute;transition:.3s ease-in-out;width:100%}:host .gds-input-wrapper:before{bottom:0}.is-invalid :host .gds-input-wrapper{color:var(--intent-danger-background);opacity:1}.is-invalid :host .gds-input-wrapper:before{background:var(--intent-danger-background);clip-path:inset(1px 0 0 0)}:host .gds-input-wrapper.nggv-field--error{border-bottom:.125rem solid #9f000a!important;height:100%}:host .gds-input-wrapper *,:host .gds-input-wrapper *:before,:host .gds-input-wrapper *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group-prefix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-right-radius:0!important;border-bottom-right-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-prefix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-prefix{min-width:initial}}:host .gds-input-wrapper .input-group-prefix:empty{display:none}:host .gds-input-wrapper .input-group-suffix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-suffix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-suffix{min-width:initial}}:host .gds-input-wrapper .input-group-suffix:empty{display:none}:host .gds-input-wrapper .input-group{width:100%}:host .gds-input-wrapper .input-group input{outline:none;min-height:2.5rem;height:2.625rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%}:host .gds-input-wrapper .input-group input *,:host .gds-input-wrapper .input-group input *:before,:host .gds-input-wrapper .input-group input *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group input:hover{border-color:#41b0ee}:host .gds-input-wrapper .input-group input:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .gds-input-wrapper .input-group input:active{border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]::placeholder{color:#cecece}:host .gds-input-wrapper .input-group input:not(:focus){border-right:none;padding-right:0}:host .gds-input-wrapper .input-group input:focus{padding-right:0}:host .gds-input-wrapper:has(.input-group-prefix:not(:empty)) .input-group input{border-bottom-left-radius:0;border-top-left-radius:0}:host .gds-input-wrapper:has(.input-group-suffix:not(:empty)) .input-group input{border-bottom-right-radius:0;border-top-right-radius:0}:host.small label:not(.form-control){line-height:1rem;font-size:.875rem}:host.small label+.form-info{margin-bottom:.25rem}:host.small label+.gds-input-wrapper{margin-top:.25rem}:host.small .gds-input-wrapper{min-height:2rem}:host.small .gds-input-wrapper .input-group input{padding:.38rem .5rem;line-height:1rem;height:1.875rem;min-height:1.75rem;font-size:.875rem}:host.small .gds-input-wrapper .input-group-suffix,:host.small .gds-input-wrapper .input-group-prefix{height:1.875rem;min-height:1.75rem;min-width:initial}:host.small .gds-form-item__footer:not(:empty){margin-top:.25rem}:host label:is(label),:host .label:is(label),:host legend:is(label){margin-bottom:0}:host label.form-control,:host .label.form-control,:host legend.form-control{width:fit-content}@supports (-moz-appearance: none){:host label.form-control:focus:not(:focus-visible),:host .label.form-control:focus:not(:focus-visible),:host legend.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host label.form-control:focus,:host label.form-control:focus-within,:host .label.form-control:focus,:host .label.form-control:focus-within,:host legend.form-control:focus,:host legend.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host label:not(.form-control),:host .label:not(.form-control),:host legend:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host label+input,:host label+textarea,fieldset :host label+div,:host label+button,:host label+.group-stepper,:host label+.stepper-wrapper,:host label+.group,:host .label+input,:host .label+textarea,fieldset :host .label+div,:host .label+button,:host .label+.group-stepper,:host .label+.stepper-wrapper,:host .label+.group,:host legend+input,:host legend+textarea,fieldset :host legend+div,:host legend+button,:host legend+.group-stepper,:host legend+.stepper-wrapper,:host legend+.group{margin-top:.5rem}:host label+.form-info,:host .label+.form-info,:host legend+.form-info{margin-bottom:.5rem}:host label+.gds-input-wrapper,:host label+.nggv-field--locked{margin-top:.5rem}:host .gds-field-label--optional{font-weight:400}:host .form-info{font-size:.875rem;line-height:1.25rem;width:100%}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: i4$1.NggvInputMaskDirective, selector: "[nggvInputMask]", inputs: ["nggvInputMask"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.CharacterCountdownDirective, selector: "[nggvCharacterCountdown]", inputs: ["nggvCharacterCountdown", "nggvCharacterCountdownCurrentLength"] }, { kind: "directive", type: i4.NggCoreElementDirective, selector: "[nggCoreElement]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i4$1.InputMaskFormatPipe, name: "nggvInputMaskFormat" }] }); }
5044
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvInputComponent, selector: "nggv-input", inputs: { size: "size", thook: "thook", type: "type", placeholder: "placeholder", autocomplete: "autocomplete", readonly: "readonly", email: "email", min: "min", max: "max", step: "step", minLength: "minLength", minlength: "minlength", maxLength: "maxLength", maxlength: "maxlength", showCharacterCountdown: "showCharacterCountdown", pattern: "pattern", debounceTime: "debounceTime", inputMask: "inputMask" }, outputs: { nggvInput: "nggvInput" }, host: { properties: { "class": "this.size", "attr.data-thook": "this.thook" } }, usesInheritance: true, ngImport: i0, template: "<!-- LABEL -->\n<label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n *transloco=\"let t; read: scope\"\n>\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n</label>\n\n<!-- DESCRIPTION -->\n<div\n class=\"form-info description hide-if-empty\"\n *ngIf=\"description && descriptionIsVisible\"\n>\n {{ description }}\n</div>\n\n<!-- LOCKED INPUT -->\n<ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n <ng-container *ngIf=\"!inputMask\">\n {{ state }}\n </ng-container>\n <ng-container *ngIf=\"!!inputMask\">\n {{ state | nggvInputMaskFormat: inputMask }}\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n</ng-container>\n\n<!-- INPUT WRAPPER -->\n<ng-container *ngIf=\"!locked\">\n <div class=\"gds-input-wrapper\" [class.nggv-field--error]=\"invalid\">\n <div class=\"input-group-prefix hide-if-empty\">\n <ng-content select=\"[slot='prefix']\"></ng-content>\n </div>\n\n <!-- INPUT FIELD -->\n <div class=\"input-group\" *ngIf=\"!inputMask\">\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n [attr.type]=\"type\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [attr.email]=\"email\"\n [attr.aria-describedby]=\"id + '-message'\"\n [min]=\"min\"\n [max]=\"max\"\n [step]=\"step\"\n [attr.maxlength]=\"maxlength\"\n [attr.minlength]=\"minlength\"\n [pattern]=\"pattern\"\n title=\"\"\n [disabled]=\"disabled\"\n [autocomplete]=\"autocomplete\"\n [autofocus]=\"autofocus\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [value]=\"state\"\n (input)=\"onInput($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n </div>\n\n <!-- INPUT FIELD WITH MASK -->\n <div\n class=\"input-group\"\n *ngIf=\"!!inputMask && (hideInput$ | async) === false\"\n >\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [attr.aria-describedby]=\"id + '-message'\"\n [nggvInputMask]=\"inputMask\"\n title=\"\"\n [formControl]=\"control\"\n />\n </div>\n\n <div class=\"input-group-suffix hide-if-empty\">\n <ng-content select=\"[slot='suffix']\"></ng-content>\n <ng-content></ng-content>\n </div>\n </div>\n\n <!-- ERRORS -->\n <div\n class=\"gds-form-item__footer error-wrapper\"\n *transloco=\"let t; read: scope\"\n >\n <span\n class=\"form-info form-info--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && (error || ngControl?.invalid)\"\n >\n <span class=\"error-icon\">\n <gds-icon-triangle-exclamation\n width=\"16\"\n height=\"16\"\n solid=\"true\"\n *nggCoreElement\n ></gds-icon-triangle-exclamation>\n </span>\n\n <span\n *ngIf=\"error; else errorsRef\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n\n <ng-container *ngIf=\"!inputMask && hasMaxLength && showCharacterCountdown\">\n <span\n *nggvCharacterCountdown=\"\n maxlength;\n currentLength: (inputRef?.nativeElement?.value ?? '').length;\n charactersLeft as charactersLeft\n \"\n class=\"form-info form-info--countdown\"\n style=\"text-align: right\"\n >\n {{ charactersLeft }} {{ t('label.maxlength') }}\n </span>\n </ng-container>\n </div>\n</ng-container>\n", styles: [":host{--sg-text-primary: #333;--sg-form-control-bg: #fff;--gds-ref-pallet-base100: hsl(0, 0%, 97%);--sg-border-radius: 4px;--sg-border-width: 1px;--sg-border-color: #868686;display:flex;flex-direction:column;max-width:100%;position:relative;width:100%;z-index:0}:host:not(:last-child){margin-bottom:1.5rem}:host .gds-form-item__header{display:flex}:host .gds-form-item__header .form-info{font-weight:400}:host .gds-form-item__header button.icon.small{margin-top:-.5rem;margin-right:-.5rem}:host .gds-form-item__labels{flex:1;margin-bottom:.5rem}:host .gds-form-item__labels .form-info{margin-bottom:0}:host .gds-form-item__labels .form-info a:link:not(.button,[aria-disabled]){color:#0062bc}:host .gds-form-item__labels>*{width:100%;display:block}:host .gds-form-item__expandable-info{overflow:hidden;font-size:.875rem;line-height:1.25rem;transition:height .3s cubic-bezier(.23,1,.32,1)}:host .gds-form-item__expandable-info>div{padding-bottom:.5rem}:host .gds-form-item__backdrop{position:absolute;inset:0;background:var(--gds-sys-color-base-100);border-radius:2px;z-index:-1;margin:-1rem;opacity:0;transition:all .3s cubic-bezier(.23,1,.32,1);border:1px solid transparent}@media (prefers-reduced-motion: reduce){:host .gds-form-item__backdrop{transition:none}}:host:has([aria-expanded=true]) .gds-form-item__backdrop{opacity:1;border-radius:.25rem;border-color:var(--gds-sys-color-base-600)}:host .gds-form-item__footer:not(:empty){margin-top:.5rem;display:flex;column-gap:.5rem}:host .gds-form-item__footer:not(:empty)>span,:host .gds-form-item__footer:not(:empty)>.form-info{font-weight:500;line-height:1.125}:host *{box-sizing:border-box}:host .gds-form-item__footer .form-info{font-weight:500}:host .gds-form-item__footer .form-info.form-info--countdown{font-weight:400}:host .gds-form-item__footer .form-info--error{display:flex;align-items:flex-start;gap:.5em;color:#9f000a}:host .gds-form-item__footer .form-info--error .error-icon{align-items:center}:host .hide-if-empty:empty{display:none}:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);background-color:var(--sg-form-control-bg);color:var(--sg-text-primary);min-height:2.75rem;display:flex;align-items:center;justify-content:center}:host input:not([type]):focus:not(:focus-visible),:host input[type=date]:focus:not(:focus-visible),:host input[type=datetime]:focus:not(:focus-visible),:host input[type=datetime-local]:focus:not(:focus-visible),:host input[type=email]:focus:not(:focus-visible),:host input[type=month]:focus:not(:focus-visible),:host input[type=number]:focus:not(:focus-visible),:host input[type=password]:focus:not(:focus-visible),:host input[type=search]:focus:not(:focus-visible),:host input[type=tel]:focus:not(:focus-visible),:host input[type=text]:focus:not(:focus-visible),:host input[type=time]:focus:not(:focus-visible),:host input[type=url]:focus:not(:focus-visible),:host input[type=week]:focus:not(:focus-visible){box-shadow:none;outline:0}:host input:not([type]):focus,:host input:not([type]):focus-visible,:host input[type=date]:focus,:host input[type=date]:focus-visible,:host input[type=datetime]:focus,:host input[type=datetime]:focus-visible,:host input[type=datetime-local]:focus,:host input[type=datetime-local]:focus-visible,:host input[type=email]:focus,:host input[type=email]:focus-visible,:host input[type=month]:focus,:host input[type=month]:focus-visible,:host input[type=number]:focus,:host input[type=number]:focus-visible,:host input[type=password]:focus,:host input[type=password]:focus-visible,:host input[type=search]:focus,:host input[type=search]:focus-visible,:host input[type=tel]:focus,:host input[type=tel]:focus-visible,:host input[type=text]:focus,:host input[type=text]:focus-visible,:host input[type=time]:focus,:host input[type=time]:focus-visible,:host input[type=url]:focus,:host input[type=url]:focus-visible,:host input[type=week]:focus,:host input[type=week]:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host input:not([type]).small,:host input[type=date].small,:host input[type=datetime].small,:host input[type=datetime-local].small,:host input[type=email].small,:host input[type=month].small,:host input[type=number].small,:host input[type=password].small,:host input[type=search].small,:host input[type=tel].small,:host input[type=text].small,:host input[type=time].small,:host input[type=url].small,:host input[type=week].small{min-height:2rem;padding:.25rem .75rem;line-height:1rem}@media screen and (-ms-high-contrast: active){:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{border:2px solid currentcolor}}:host input:not([type]):disabled,:host input:not([type]).disabled,:host input:not([type])[aria-disabled=true],:host input[type=date]:disabled,:host input[type=date].disabled,:host input[type=date][aria-disabled=true],:host input[type=datetime]:disabled,:host input[type=datetime].disabled,:host input[type=datetime][aria-disabled=true],:host input[type=datetime-local]:disabled,:host input[type=datetime-local].disabled,:host input[type=datetime-local][aria-disabled=true],:host input[type=email]:disabled,:host input[type=email].disabled,:host input[type=email][aria-disabled=true],:host input[type=month]:disabled,:host input[type=month].disabled,:host input[type=month][aria-disabled=true],:host input[type=number]:disabled,:host input[type=number].disabled,:host input[type=number][aria-disabled=true],:host input[type=password]:disabled,:host input[type=password].disabled,:host input[type=password][aria-disabled=true],:host input[type=search]:disabled,:host input[type=search].disabled,:host input[type=search][aria-disabled=true],:host input[type=tel]:disabled,:host input[type=tel].disabled,:host input[type=tel][aria-disabled=true],:host input[type=text]:disabled,:host input[type=text].disabled,:host input[type=text][aria-disabled=true],:host input[type=time]:disabled,:host input[type=time].disabled,:host input[type=time][aria-disabled=true],:host input[type=url]:disabled,:host input[type=url].disabled,:host input[type=url][aria-disabled=true],:host input[type=week]:disabled,:host input[type=week].disabled,:host input[type=week][aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host input:not([type]):disabled::placeholder,:host input:not([type]).disabled::placeholder,:host input:not([type])[aria-disabled=true]::placeholder,:host input[type=date]:disabled::placeholder,:host input[type=date].disabled::placeholder,:host input[type=date][aria-disabled=true]::placeholder,:host input[type=datetime]:disabled::placeholder,:host input[type=datetime].disabled::placeholder,:host input[type=datetime][aria-disabled=true]::placeholder,:host input[type=datetime-local]:disabled::placeholder,:host input[type=datetime-local].disabled::placeholder,:host input[type=datetime-local][aria-disabled=true]::placeholder,:host input[type=email]:disabled::placeholder,:host input[type=email].disabled::placeholder,:host input[type=email][aria-disabled=true]::placeholder,:host input[type=month]:disabled::placeholder,:host input[type=month].disabled::placeholder,:host input[type=month][aria-disabled=true]::placeholder,:host input[type=number]:disabled::placeholder,:host input[type=number].disabled::placeholder,:host input[type=number][aria-disabled=true]::placeholder,:host input[type=password]:disabled::placeholder,:host input[type=password].disabled::placeholder,:host input[type=password][aria-disabled=true]::placeholder,:host input[type=search]:disabled::placeholder,:host input[type=search].disabled::placeholder,:host input[type=search][aria-disabled=true]::placeholder,:host input[type=tel]:disabled::placeholder,:host input[type=tel].disabled::placeholder,:host input[type=tel][aria-disabled=true]::placeholder,:host input[type=text]:disabled::placeholder,:host input[type=text].disabled::placeholder,:host input[type=text][aria-disabled=true]::placeholder,:host input[type=time]:disabled::placeholder,:host input[type=time].disabled::placeholder,:host input[type=time][aria-disabled=true]::placeholder,:host input[type=url]:disabled::placeholder,:host input[type=url].disabled::placeholder,:host input[type=url][aria-disabled=true]::placeholder,:host input[type=week]:disabled::placeholder,:host input[type=week].disabled::placeholder,:host input[type=week][aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host input:not([type]):hover,:host input[type=date]:hover,:host input[type=datetime]:hover,:host input[type=datetime-local]:hover,:host input[type=email]:hover,:host input[type=month]:hover,:host input[type=number]:hover,:host input[type=password]:hover,:host input[type=search]:hover,:host input[type=tel]:hover,:host input[type=text]:hover,:host input[type=time]:hover,:host input[type=url]:hover,:host input[type=week]:hover{background-color:var(--gds-sys-color-base-200)}:host input[type=number]{-moz-appearance:textfield}:host input[type=number]::-webkit-outer-spin-button,:host input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host input{width:100%;line-height:18px;font-size:1rem;font-family:inherit}:host .gds-input-wrapper{position:relative;border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;display:flex;flex-direction:row}:host .gds-input-wrapper:before{background:transparent;border-radius:0 0 4px 4px;clip-path:inset(4px 0 0 0);content:\"\";display:block;height:4px;position:absolute;transition:.3s ease-in-out;width:100%}:host .gds-input-wrapper:before{bottom:0}.is-invalid :host .gds-input-wrapper{color:var(--intent-danger-background);opacity:1}.is-invalid :host .gds-input-wrapper:before{background:var(--intent-danger-background);clip-path:inset(1px 0 0 0)}:host .gds-input-wrapper.nggv-field--error{border-bottom:.125rem solid #9f000a!important;height:100%}:host .gds-input-wrapper *,:host .gds-input-wrapper *:before,:host .gds-input-wrapper *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group-prefix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-right-radius:0!important;border-bottom-right-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-prefix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-prefix{min-width:initial}}:host .gds-input-wrapper .input-group-prefix:empty{display:none}:host .gds-input-wrapper .input-group-suffix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-suffix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-suffix{min-width:initial}}:host .gds-input-wrapper .input-group-suffix:empty{display:none}:host .gds-input-wrapper .input-group{width:100%}:host .gds-input-wrapper .input-group input{outline:none;min-height:2.5rem;height:2.625rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%}:host .gds-input-wrapper .input-group input *,:host .gds-input-wrapper .input-group input *:before,:host .gds-input-wrapper .input-group input *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group input:hover{border-color:#41b0ee}:host .gds-input-wrapper .input-group input:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .gds-input-wrapper .input-group input:active{border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]::placeholder{color:#cecece}:host .gds-input-wrapper .input-group input:not(:focus){border-right:none;padding-right:0}:host .gds-input-wrapper .input-group input:focus{padding-right:0}:host .gds-input-wrapper:has(.input-group-prefix:not(:empty)) .input-group input{border-bottom-left-radius:0;border-top-left-radius:0}:host .gds-input-wrapper:has(.input-group-suffix:not(:empty)) .input-group input{border-bottom-right-radius:0;border-top-right-radius:0}:host.small label:not(.form-control){line-height:1rem;font-size:.875rem}:host.small label+.form-info{margin-bottom:.25rem}:host.small label+.gds-input-wrapper{margin-top:.25rem}:host.small .gds-input-wrapper{min-height:2rem}:host.small .gds-input-wrapper .input-group input{padding:.38rem .5rem;line-height:1rem;height:1.875rem;min-height:1.75rem;font-size:.875rem}:host.small .gds-input-wrapper .input-group-suffix,:host.small .gds-input-wrapper .input-group-prefix{height:1.875rem;min-height:1.75rem;min-width:initial}:host.small .gds-form-item__footer:not(:empty){margin-top:.25rem}:host label:is(label),:host .label:is(label),:host legend:is(label){margin-bottom:0}:host label.form-control,:host .label.form-control,:host legend.form-control{width:fit-content}@supports (-moz-appearance: none){:host label.form-control:focus:not(:focus-visible),:host .label.form-control:focus:not(:focus-visible),:host legend.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host label.form-control:focus,:host label.form-control:focus-within,:host .label.form-control:focus,:host .label.form-control:focus-within,:host legend.form-control:focus,:host legend.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host label:not(.form-control),:host .label:not(.form-control),:host legend:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host label+input,:host label+textarea,fieldset :host label+div,:host label+button,:host label+.group-stepper,:host label+.stepper-wrapper,:host label+.group,:host .label+input,:host .label+textarea,fieldset :host .label+div,:host .label+button,:host .label+.group-stepper,:host .label+.stepper-wrapper,:host .label+.group,:host legend+input,:host legend+textarea,fieldset :host legend+div,:host legend+button,:host legend+.group-stepper,:host legend+.stepper-wrapper,:host legend+.group{margin-top:.5rem}:host label+.form-info,:host .label+.form-info,:host legend+.form-info{margin-bottom:.5rem}:host label+.gds-input-wrapper,:host label+.nggv-field--locked{margin-top:.5rem}:host .gds-field-label--optional{font-weight:400}:host .form-info{font-size:.875rem;line-height:1.25rem;width:100%}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: i4$1.NggvInputMaskDirective, selector: "[nggvInputMask]", inputs: ["nggvInputMask"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.CharacterCountdownDirective, selector: "[nggvCharacterCountdown]", inputs: ["nggvCharacterCountdown", "nggvCharacterCountdownCurrentLength"] }, { kind: "directive", type: i4.NggCoreElementDirective, selector: "[nggCoreElement]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i4$1.InputMaskFormatPipe, name: "nggvInputMaskFormat" }] }); }
5033
5045
  }
5034
5046
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvInputComponent, decorators: [{
5035
5047
  type: Component,
5036
- args: [{ selector: 'nggv-input', template: "<!-- LABEL -->\n<label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n *transloco=\"let t; read: scope\"\n>\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n</label>\n\n<!-- DESCRIPTION -->\n<div\n class=\"form-info description hide-if-empty\"\n *ngIf=\"description && descriptionIsVisible\"\n>\n {{ description }}\n</div>\n\n<!-- LOCKED INPUT -->\n<ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n <ng-container *ngIf=\"!inputMask\">\n {{ state }}\n </ng-container>\n <ng-container *ngIf=\"!!inputMask\">\n {{ state | nggvInputMaskFormat: inputMask }}\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n</ng-container>\n\n<!-- INPUT WRAPPER -->\n<ng-container *ngIf=\"!locked\">\n <div class=\"gds-input-wrapper\" [class.nggv-field--error]=\"invalid\">\n <div class=\"input-group-prefix hide-if-empty\">\n <ng-content select=\"[slot='prefix']\"></ng-content>\n </div>\n\n <!-- INPUT FIELD -->\n <div class=\"input-group\" *ngIf=\"!inputMask\">\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n [attr.type]=\"type\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [attr.email]=\"email\"\n [attr.aria-describedby]=\"id + '-message'\"\n [min]=\"min\"\n [max]=\"max\"\n [step]=\"step\"\n [attr.maxlength]=\"maxlength\"\n [attr.minlength]=\"minlength\"\n [pattern]=\"pattern\"\n title=\"\"\n [disabled]=\"disabled\"\n [autocomplete]=\"autocomplete\"\n [autofocus]=\"autofocus\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [value]=\"state\"\n (input)=\"onInput($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n </div>\n\n <!-- INPUT FIELD WITH MASK -->\n <div\n class=\"input-group\"\n *ngIf=\"!!inputMask && (hideInput$ | async) === false\"\n >\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [attr.aria-describedby]=\"id + '-message'\"\n [nggvInputMask]=\"inputMask\"\n title=\"\"\n [formControl]=\"control\"\n />\n </div>\n\n <div class=\"input-group-suffix hide-if-empty\">\n <ng-content select=\"[slot='suffix']\"></ng-content>\n <ng-content></ng-content>\n </div>\n </div>\n\n <!-- ERRORS -->\n <div\n class=\"gds-form-item__footer error-wrapper\"\n *transloco=\"let t; read: scope\"\n >\n <span\n class=\"form-info form-info--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && (error || ngControl?.invalid)\"\n >\n <span class=\"error-icon\">\n <gds-icon-triangle-exclamation\n width=\"16\"\n height=\"16\"\n solid=\"true\"\n *nggCoreElement\n ></gds-icon-triangle-exclamation>\n </span>\n\n <span\n *ngIf=\"error; else errorsRef\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n\n <ng-container *ngIf=\"!inputMask && hasMaxLength && showCharacterCountdown\">\n <span\n *nggvCharacterCountdown=\"\n maxlength;\n currentLength: (inputRef?.nativeElement?.value ?? '').length;\n charactersLeft as charactersLeft\n \"\n class=\"form-info form-info--countdown\"\n style=\"text-align: right\"\n >\n {{ charactersLeft }} {{ t('label.maxlength') }}\n </span>\n </ng-container>\n </div>\n</ng-container>\n", styles: [":host{--sg-text-primary: #333;--sg-form-control-bg: #fff;--gds-ref-pallet-base100: hsl(0, 0%, 97%);--sg-border-radius: 4px;--sg-border-width: 1px;--sg-border-color: #868686;display:flex;flex-direction:column;max-width:100%;position:relative;width:100%;z-index:0}:host:not(:last-child){margin-bottom:1.5rem}:host .gds-form-item__header{display:flex}:host .gds-form-item__header .form-info{font-weight:400}:host .gds-form-item__header button.icon.small{margin-top:-.5rem;margin-right:-.5rem}:host .gds-form-item__labels{flex:1;margin-bottom:.5rem}:host .gds-form-item__labels .form-info{margin-bottom:0}:host .gds-form-item__labels .form-info a:link:not(.button,[aria-disabled]){color:#0062bc}:host .gds-form-item__labels>*{width:100%;display:block}:host .gds-form-item__expandable-info{overflow:hidden;font-size:.875rem;line-height:1.25rem;transition:height .3s cubic-bezier(.23,1,.32,1)}:host .gds-form-item__expandable-info>div{padding-bottom:.5rem}:host .gds-form-item__backdrop{position:absolute;inset:0;background:var(--gds-sys-color-base-100);border-radius:2px;z-index:-1;margin:-1rem;opacity:0;transition:all .3s cubic-bezier(.23,1,.32,1);border:1px solid transparent}@media (prefers-reduced-motion: reduce){:host .gds-form-item__backdrop{transition:none}}:host:has([aria-expanded=true]) .gds-form-item__backdrop{opacity:1;border-radius:.25rem;border-color:var(--gds-sys-color-base-600)}:host .gds-form-item__footer:not(:empty){margin-top:.5rem;display:flex;column-gap:.5rem}:host .gds-form-item__footer:not(:empty)>span,:host .gds-form-item__footer:not(:empty)>.form-info{font-weight:500;line-height:1.125}:host *{box-sizing:border-box}:host .gds-form-item__footer .form-info{font-weight:500}:host .gds-form-item__footer .form-info.form-info--countdown{font-weight:400}:host .gds-form-item__footer .form-info--error{display:flex;align-items:flex-start;gap:.5em;color:#9f000a}:host .gds-form-item__footer .form-info--error .error-icon{align-items:center}:host .hide-if-empty:empty{display:none}:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);background-color:var(--sg-form-control-bg);color:var(--sg-text-primary);min-height:2.75rem;display:flex;align-items:center;justify-content:center}:host input:not([type]):focus:not(:focus-visible),:host input[type=date]:focus:not(:focus-visible),:host input[type=datetime]:focus:not(:focus-visible),:host input[type=datetime-local]:focus:not(:focus-visible),:host input[type=email]:focus:not(:focus-visible),:host input[type=month]:focus:not(:focus-visible),:host input[type=number]:focus:not(:focus-visible),:host input[type=password]:focus:not(:focus-visible),:host input[type=search]:focus:not(:focus-visible),:host input[type=tel]:focus:not(:focus-visible),:host input[type=text]:focus:not(:focus-visible),:host input[type=time]:focus:not(:focus-visible),:host input[type=url]:focus:not(:focus-visible),:host input[type=week]:focus:not(:focus-visible){box-shadow:none;outline:0}:host input:not([type]):focus,:host input:not([type]):focus-visible,:host input[type=date]:focus,:host input[type=date]:focus-visible,:host input[type=datetime]:focus,:host input[type=datetime]:focus-visible,:host input[type=datetime-local]:focus,:host input[type=datetime-local]:focus-visible,:host input[type=email]:focus,:host input[type=email]:focus-visible,:host input[type=month]:focus,:host input[type=month]:focus-visible,:host input[type=number]:focus,:host input[type=number]:focus-visible,:host input[type=password]:focus,:host input[type=password]:focus-visible,:host input[type=search]:focus,:host input[type=search]:focus-visible,:host input[type=tel]:focus,:host input[type=tel]:focus-visible,:host input[type=text]:focus,:host input[type=text]:focus-visible,:host input[type=time]:focus,:host input[type=time]:focus-visible,:host input[type=url]:focus,:host input[type=url]:focus-visible,:host input[type=week]:focus,:host input[type=week]:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host input:not([type]).small,:host input[type=date].small,:host input[type=datetime].small,:host input[type=datetime-local].small,:host input[type=email].small,:host input[type=month].small,:host input[type=number].small,:host input[type=password].small,:host input[type=search].small,:host input[type=tel].small,:host input[type=text].small,:host input[type=time].small,:host input[type=url].small,:host input[type=week].small{min-height:2rem;padding:.25rem .75rem;line-height:1rem}@media screen and (-ms-high-contrast: active){:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{border:2px solid currentcolor}}:host input:not([type]):disabled,:host input:not([type]).disabled,:host input:not([type])[aria-disabled=true],:host input[type=date]:disabled,:host input[type=date].disabled,:host input[type=date][aria-disabled=true],:host input[type=datetime]:disabled,:host input[type=datetime].disabled,:host input[type=datetime][aria-disabled=true],:host input[type=datetime-local]:disabled,:host input[type=datetime-local].disabled,:host input[type=datetime-local][aria-disabled=true],:host input[type=email]:disabled,:host input[type=email].disabled,:host input[type=email][aria-disabled=true],:host input[type=month]:disabled,:host input[type=month].disabled,:host input[type=month][aria-disabled=true],:host input[type=number]:disabled,:host input[type=number].disabled,:host input[type=number][aria-disabled=true],:host input[type=password]:disabled,:host input[type=password].disabled,:host input[type=password][aria-disabled=true],:host input[type=search]:disabled,:host input[type=search].disabled,:host input[type=search][aria-disabled=true],:host input[type=tel]:disabled,:host input[type=tel].disabled,:host input[type=tel][aria-disabled=true],:host input[type=text]:disabled,:host input[type=text].disabled,:host input[type=text][aria-disabled=true],:host input[type=time]:disabled,:host input[type=time].disabled,:host input[type=time][aria-disabled=true],:host input[type=url]:disabled,:host input[type=url].disabled,:host input[type=url][aria-disabled=true],:host input[type=week]:disabled,:host input[type=week].disabled,:host input[type=week][aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host input:not([type]):disabled::placeholder,:host input:not([type]).disabled::placeholder,:host input:not([type])[aria-disabled=true]::placeholder,:host input[type=date]:disabled::placeholder,:host input[type=date].disabled::placeholder,:host input[type=date][aria-disabled=true]::placeholder,:host input[type=datetime]:disabled::placeholder,:host input[type=datetime].disabled::placeholder,:host input[type=datetime][aria-disabled=true]::placeholder,:host input[type=datetime-local]:disabled::placeholder,:host input[type=datetime-local].disabled::placeholder,:host input[type=datetime-local][aria-disabled=true]::placeholder,:host input[type=email]:disabled::placeholder,:host input[type=email].disabled::placeholder,:host input[type=email][aria-disabled=true]::placeholder,:host input[type=month]:disabled::placeholder,:host input[type=month].disabled::placeholder,:host input[type=month][aria-disabled=true]::placeholder,:host input[type=number]:disabled::placeholder,:host input[type=number].disabled::placeholder,:host input[type=number][aria-disabled=true]::placeholder,:host input[type=password]:disabled::placeholder,:host input[type=password].disabled::placeholder,:host input[type=password][aria-disabled=true]::placeholder,:host input[type=search]:disabled::placeholder,:host input[type=search].disabled::placeholder,:host input[type=search][aria-disabled=true]::placeholder,:host input[type=tel]:disabled::placeholder,:host input[type=tel].disabled::placeholder,:host input[type=tel][aria-disabled=true]::placeholder,:host input[type=text]:disabled::placeholder,:host input[type=text].disabled::placeholder,:host input[type=text][aria-disabled=true]::placeholder,:host input[type=time]:disabled::placeholder,:host input[type=time].disabled::placeholder,:host input[type=time][aria-disabled=true]::placeholder,:host input[type=url]:disabled::placeholder,:host input[type=url].disabled::placeholder,:host input[type=url][aria-disabled=true]::placeholder,:host input[type=week]:disabled::placeholder,:host input[type=week].disabled::placeholder,:host input[type=week][aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host input:not([type]):hover,:host input[type=date]:hover,:host input[type=datetime]:hover,:host input[type=datetime-local]:hover,:host input[type=email]:hover,:host input[type=month]:hover,:host input[type=number]:hover,:host input[type=password]:hover,:host input[type=search]:hover,:host input[type=tel]:hover,:host input[type=text]:hover,:host input[type=time]:hover,:host input[type=url]:hover,:host input[type=week]:hover{background-color:var(--gds-sys-color-base-200)}:host input[type=number]{-moz-appearance:textfield}:host input[type=number]::-webkit-outer-spin-button,:host input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host input{width:100%;line-height:18px;font-size:1rem;font-family:inherit}:host .gds-input-wrapper{position:relative;transition:all .2s ease-in-out,outline-offset 0s,outline-width 0s;border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;display:flex;flex-direction:row}:host .gds-input-wrapper:before{background:transparent;border-radius:0 0 4px 4px;clip-path:inset(4px 0 0 0);content:\"\";display:block;height:4px;position:absolute;transition:.3s ease-in-out;width:100%}:host .gds-input-wrapper:before{bottom:0}.is-invalid :host .gds-input-wrapper{color:var(--intent-danger-background);opacity:1}.is-invalid :host .gds-input-wrapper:before{background:var(--intent-danger-background);clip-path:inset(1px 0 0 0)}:host .gds-input-wrapper.nggv-field--error{border-bottom:.125rem solid #9f000a!important;height:100%}:host .gds-input-wrapper *,:host .gds-input-wrapper *:before,:host .gds-input-wrapper *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group-prefix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-right-radius:0!important;border-bottom-right-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-prefix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-prefix{min-width:initial}}:host .gds-input-wrapper .input-group-prefix:empty{display:none}:host .gds-input-wrapper .input-group-suffix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-suffix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-suffix{min-width:initial}}:host .gds-input-wrapper .input-group-suffix:empty{display:none}:host .gds-input-wrapper .input-group{width:100%}:host .gds-input-wrapper .input-group input{outline:none;min-height:2.5rem;height:2.625rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%}:host .gds-input-wrapper .input-group input *,:host .gds-input-wrapper .input-group input *:before,:host .gds-input-wrapper .input-group input *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group input:hover{border-color:#41b0ee}:host .gds-input-wrapper .input-group input:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .gds-input-wrapper .input-group input:active{border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]::placeholder{color:#cecece}:host .gds-input-wrapper .input-group input:not(:focus){border-right:none;padding-right:0}:host .gds-input-wrapper .input-group input:focus{padding-right:0}:host .gds-input-wrapper:has(.input-group-prefix:not(:empty)) .input-group input{border-bottom-left-radius:0;border-top-left-radius:0}:host .gds-input-wrapper:has(.input-group-suffix:not(:empty)) .input-group input{border-bottom-right-radius:0;border-top-right-radius:0}:host.small label:not(.form-control){line-height:1rem;font-size:.875rem}:host.small label+.form-info{margin-bottom:.25rem}:host.small label+.gds-input-wrapper{margin-top:.25rem}:host.small .gds-input-wrapper{min-height:2rem}:host.small .gds-input-wrapper .input-group input{padding:.38rem .5rem;line-height:1rem;height:1.875rem;min-height:1.75rem;font-size:.875rem}:host.small .gds-input-wrapper .input-group-suffix,:host.small .gds-input-wrapper .input-group-prefix{height:1.875rem;min-height:1.75rem;min-width:initial}:host.small .gds-form-item__footer:not(:empty){margin-top:.25rem}:host label:is(label),:host .label:is(label),:host legend:is(label){margin-bottom:0}:host label.form-control,:host .label.form-control,:host legend.form-control{width:fit-content}@supports (-moz-appearance: none){:host label.form-control:focus:not(:focus-visible),:host .label.form-control:focus:not(:focus-visible),:host legend.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host label.form-control:focus,:host label.form-control:focus-within,:host .label.form-control:focus,:host .label.form-control:focus-within,:host legend.form-control:focus,:host legend.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host label:not(.form-control),:host .label:not(.form-control),:host legend:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host label+input,:host label+textarea,fieldset :host label+div,:host label+button,:host label+.group-stepper,:host label+.stepper-wrapper,:host label+.group,:host .label+input,:host .label+textarea,fieldset :host .label+div,:host .label+button,:host .label+.group-stepper,:host .label+.stepper-wrapper,:host .label+.group,:host legend+input,:host legend+textarea,fieldset :host legend+div,:host legend+button,:host legend+.group-stepper,:host legend+.stepper-wrapper,:host legend+.group{margin-top:.5rem}:host label+.form-info,:host .label+.form-info,:host legend+.form-info{margin-bottom:.5rem}:host label+.gds-input-wrapper,:host label+.nggv-field--locked{margin-top:.5rem}:host .gds-field-label--optional{font-weight:400}:host .form-info{font-size:.875rem;line-height:1.25rem;width:100%}\n"] }]
5048
+ args: [{ selector: 'nggv-input', template: "<!-- LABEL -->\n<label\n [id]=\"id + '-label'\"\n class=\"gds-field-label hide-if-empty\"\n [attr.for]=\"id + '-input'\"\n *transloco=\"let t; read: scope\"\n>\n <ng-template\n *ngTemplateOutlet=\"labelContentTpl || basicLabelContentTpl\"\n ></ng-template>\n <ng-template #basicLabelContentTpl>\n <!-- to trigger css:empty if no label was added -->\n <ng-container *ngIf=\"label\">\n {{ label }}\n <span\n *ngIf=\"optional === true || (required !== true && optional !== false)\"\n class=\"gds-field-label--optional\"\n >\n ({{ t('label.optional') }})\n </span>\n </ng-container>\n </ng-template>\n</label>\n\n<!-- DESCRIPTION -->\n<div\n class=\"form-info description hide-if-empty\"\n *ngIf=\"description && descriptionIsVisible\"\n>\n {{ description }}\n</div>\n\n<!-- LOCKED INPUT -->\n<ng-container *ngIf=\"locked\">\n <ng-template\n *ngTemplateOutlet=\"\n lockedTpl || defaultLockedTpl;\n context: { $implicit: state }\n \"\n ></ng-template>\n <ng-template #defaultLockedTpl>\n <div\n [id]=\"id + '-input'\"\n class=\"nggv-field--locked\"\n [attr.name]=\"name\"\n [attr.value]=\"state\"\n [attr.role]=\"role\"\n >\n <span *ngIf=\"!state\" class=\"unset-state\">-</span>\n <ng-container *ngIf=\"state\">\n <ng-container *ngIf=\"!inputMask\">\n {{ state }}\n </ng-container>\n <ng-container *ngIf=\"!!inputMask\">\n {{ state | nggvInputMaskFormat: inputMask }}\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n</ng-container>\n\n<!-- INPUT WRAPPER -->\n<ng-container *ngIf=\"!locked\">\n <div class=\"gds-input-wrapper\" [class.nggv-field--error]=\"invalid\">\n <div class=\"input-group-prefix hide-if-empty\">\n <ng-content select=\"[slot='prefix']\"></ng-content>\n </div>\n\n <!-- INPUT FIELD -->\n <div class=\"input-group\" *ngIf=\"!inputMask\">\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n [attr.type]=\"type\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [attr.email]=\"email\"\n [attr.aria-describedby]=\"id + '-message'\"\n [min]=\"min\"\n [max]=\"max\"\n [step]=\"step\"\n [attr.maxlength]=\"maxlength\"\n [attr.minlength]=\"minlength\"\n [pattern]=\"pattern\"\n title=\"\"\n [disabled]=\"disabled\"\n [autocomplete]=\"autocomplete\"\n [autofocus]=\"autofocus\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [value]=\"state\"\n (input)=\"onInput($event)\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n />\n </div>\n\n <!-- INPUT FIELD WITH MASK -->\n <div\n class=\"input-group\"\n *ngIf=\"!!inputMask && (hideInput$ | async) === false\"\n >\n <input\n #input\n [id]=\"id + '-input'\"\n class=\"gds-field\"\n autocomplete=\"off\"\n [attr.name]=\"name\"\n [attr.required]=\"required || null\"\n [readOnly]=\"readonly\"\n [attr.role]=\"role\"\n [attr.placeholder]=\"placeholder\"\n [attr.aria-label]=\"description\"\n [attr.aria-describedby]=\"id + '-message'\"\n [nggvInputMask]=\"inputMask\"\n title=\"\"\n [formControl]=\"control\"\n />\n </div>\n\n <div class=\"input-group-suffix hide-if-empty\">\n <ng-content select=\"[slot='suffix']\"></ng-content>\n <ng-content></ng-content>\n </div>\n </div>\n\n <!-- ERRORS -->\n <div\n class=\"gds-form-item__footer error-wrapper\"\n *transloco=\"let t; read: scope\"\n >\n <span\n class=\"form-info form-info--error\"\n [attr.for]=\"id + '-input'\"\n *ngIf=\"invalid && (error || ngControl?.invalid)\"\n >\n <span class=\"error-icon\">\n <gds-icon-triangle-exclamation\n width=\"16\"\n height=\"16\"\n solid=\"true\"\n *nggCoreElement\n ></gds-icon-triangle-exclamation>\n </span>\n\n <span\n *ngIf=\"error; else errorsRef\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >{{ error }}</span\n >\n <ng-template #errorsRef>\n <span\n *ngIf=\"firstError as error\"\n [attr.data-thook]=\"thook + '-errorlabel'\"\n >\n {{ t('error.field' + error?.code, error?.params) }}\n </span>\n </ng-template>\n </span>\n\n <ng-container *ngIf=\"!inputMask && hasMaxLength && showCharacterCountdown\">\n <span\n *nggvCharacterCountdown=\"\n maxlength;\n currentLength: (inputRef?.nativeElement?.value ?? '').length;\n charactersLeft as charactersLeft\n \"\n class=\"form-info form-info--countdown\"\n style=\"text-align: right\"\n >\n {{ charactersLeft }} {{ t('label.maxlength') }}\n </span>\n </ng-container>\n </div>\n</ng-container>\n", styles: [":host{--sg-text-primary: #333;--sg-form-control-bg: #fff;--gds-ref-pallet-base100: hsl(0, 0%, 97%);--sg-border-radius: 4px;--sg-border-width: 1px;--sg-border-color: #868686;display:flex;flex-direction:column;max-width:100%;position:relative;width:100%;z-index:0}:host:not(:last-child){margin-bottom:1.5rem}:host .gds-form-item__header{display:flex}:host .gds-form-item__header .form-info{font-weight:400}:host .gds-form-item__header button.icon.small{margin-top:-.5rem;margin-right:-.5rem}:host .gds-form-item__labels{flex:1;margin-bottom:.5rem}:host .gds-form-item__labels .form-info{margin-bottom:0}:host .gds-form-item__labels .form-info a:link:not(.button,[aria-disabled]){color:#0062bc}:host .gds-form-item__labels>*{width:100%;display:block}:host .gds-form-item__expandable-info{overflow:hidden;font-size:.875rem;line-height:1.25rem;transition:height .3s cubic-bezier(.23,1,.32,1)}:host .gds-form-item__expandable-info>div{padding-bottom:.5rem}:host .gds-form-item__backdrop{position:absolute;inset:0;background:var(--gds-sys-color-base-100);border-radius:2px;z-index:-1;margin:-1rem;opacity:0;transition:all .3s cubic-bezier(.23,1,.32,1);border:1px solid transparent}@media (prefers-reduced-motion: reduce){:host .gds-form-item__backdrop{transition:none}}:host:has([aria-expanded=true]) .gds-form-item__backdrop{opacity:1;border-radius:.25rem;border-color:var(--gds-sys-color-base-600)}:host .gds-form-item__footer:not(:empty){margin-top:.5rem;display:flex;column-gap:.5rem}:host .gds-form-item__footer:not(:empty)>span,:host .gds-form-item__footer:not(:empty)>.form-info{font-weight:500;line-height:1.125}:host *{box-sizing:border-box}:host .gds-form-item__footer .form-info{font-weight:500}:host .gds-form-item__footer .form-info.form-info--countdown{font-weight:400}:host .gds-form-item__footer .form-info--error{display:flex;align-items:flex-start;gap:.5em;color:#9f000a}:host .gds-form-item__footer .form-info--error .error-icon{align-items:center}:host .hide-if-empty:empty{display:none}:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);background-color:var(--sg-form-control-bg);color:var(--sg-text-primary);min-height:2.75rem;display:flex;align-items:center;justify-content:center}:host input:not([type]):focus:not(:focus-visible),:host input[type=date]:focus:not(:focus-visible),:host input[type=datetime]:focus:not(:focus-visible),:host input[type=datetime-local]:focus:not(:focus-visible),:host input[type=email]:focus:not(:focus-visible),:host input[type=month]:focus:not(:focus-visible),:host input[type=number]:focus:not(:focus-visible),:host input[type=password]:focus:not(:focus-visible),:host input[type=search]:focus:not(:focus-visible),:host input[type=tel]:focus:not(:focus-visible),:host input[type=text]:focus:not(:focus-visible),:host input[type=time]:focus:not(:focus-visible),:host input[type=url]:focus:not(:focus-visible),:host input[type=week]:focus:not(:focus-visible){box-shadow:none;outline:0}:host input:not([type]):focus,:host input:not([type]):focus-visible,:host input[type=date]:focus,:host input[type=date]:focus-visible,:host input[type=datetime]:focus,:host input[type=datetime]:focus-visible,:host input[type=datetime-local]:focus,:host input[type=datetime-local]:focus-visible,:host input[type=email]:focus,:host input[type=email]:focus-visible,:host input[type=month]:focus,:host input[type=month]:focus-visible,:host input[type=number]:focus,:host input[type=number]:focus-visible,:host input[type=password]:focus,:host input[type=password]:focus-visible,:host input[type=search]:focus,:host input[type=search]:focus-visible,:host input[type=tel]:focus,:host input[type=tel]:focus-visible,:host input[type=text]:focus,:host input[type=text]:focus-visible,:host input[type=time]:focus,:host input[type=time]:focus-visible,:host input[type=url]:focus,:host input[type=url]:focus-visible,:host input[type=week]:focus,:host input[type=week]:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host input:not([type]).small,:host input[type=date].small,:host input[type=datetime].small,:host input[type=datetime-local].small,:host input[type=email].small,:host input[type=month].small,:host input[type=number].small,:host input[type=password].small,:host input[type=search].small,:host input[type=tel].small,:host input[type=text].small,:host input[type=time].small,:host input[type=url].small,:host input[type=week].small{min-height:2rem;padding:.25rem .75rem;line-height:1rem}@media screen and (-ms-high-contrast: active){:host input:not([type]),:host input[type=date],:host input[type=datetime],:host input[type=datetime-local],:host input[type=email],:host input[type=month],:host input[type=number],:host input[type=password],:host input[type=search],:host input[type=tel],:host input[type=text],:host input[type=time],:host input[type=url],:host input[type=week]{border:2px solid currentcolor}}:host input:not([type]):disabled,:host input:not([type]).disabled,:host input:not([type])[aria-disabled=true],:host input[type=date]:disabled,:host input[type=date].disabled,:host input[type=date][aria-disabled=true],:host input[type=datetime]:disabled,:host input[type=datetime].disabled,:host input[type=datetime][aria-disabled=true],:host input[type=datetime-local]:disabled,:host input[type=datetime-local].disabled,:host input[type=datetime-local][aria-disabled=true],:host input[type=email]:disabled,:host input[type=email].disabled,:host input[type=email][aria-disabled=true],:host input[type=month]:disabled,:host input[type=month].disabled,:host input[type=month][aria-disabled=true],:host input[type=number]:disabled,:host input[type=number].disabled,:host input[type=number][aria-disabled=true],:host input[type=password]:disabled,:host input[type=password].disabled,:host input[type=password][aria-disabled=true],:host input[type=search]:disabled,:host input[type=search].disabled,:host input[type=search][aria-disabled=true],:host input[type=tel]:disabled,:host input[type=tel].disabled,:host input[type=tel][aria-disabled=true],:host input[type=text]:disabled,:host input[type=text].disabled,:host input[type=text][aria-disabled=true],:host input[type=time]:disabled,:host input[type=time].disabled,:host input[type=time][aria-disabled=true],:host input[type=url]:disabled,:host input[type=url].disabled,:host input[type=url][aria-disabled=true],:host input[type=week]:disabled,:host input[type=week].disabled,:host input[type=week][aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host input:not([type]):disabled::placeholder,:host input:not([type]).disabled::placeholder,:host input:not([type])[aria-disabled=true]::placeholder,:host input[type=date]:disabled::placeholder,:host input[type=date].disabled::placeholder,:host input[type=date][aria-disabled=true]::placeholder,:host input[type=datetime]:disabled::placeholder,:host input[type=datetime].disabled::placeholder,:host input[type=datetime][aria-disabled=true]::placeholder,:host input[type=datetime-local]:disabled::placeholder,:host input[type=datetime-local].disabled::placeholder,:host input[type=datetime-local][aria-disabled=true]::placeholder,:host input[type=email]:disabled::placeholder,:host input[type=email].disabled::placeholder,:host input[type=email][aria-disabled=true]::placeholder,:host input[type=month]:disabled::placeholder,:host input[type=month].disabled::placeholder,:host input[type=month][aria-disabled=true]::placeholder,:host input[type=number]:disabled::placeholder,:host input[type=number].disabled::placeholder,:host input[type=number][aria-disabled=true]::placeholder,:host input[type=password]:disabled::placeholder,:host input[type=password].disabled::placeholder,:host input[type=password][aria-disabled=true]::placeholder,:host input[type=search]:disabled::placeholder,:host input[type=search].disabled::placeholder,:host input[type=search][aria-disabled=true]::placeholder,:host input[type=tel]:disabled::placeholder,:host input[type=tel].disabled::placeholder,:host input[type=tel][aria-disabled=true]::placeholder,:host input[type=text]:disabled::placeholder,:host input[type=text].disabled::placeholder,:host input[type=text][aria-disabled=true]::placeholder,:host input[type=time]:disabled::placeholder,:host input[type=time].disabled::placeholder,:host input[type=time][aria-disabled=true]::placeholder,:host input[type=url]:disabled::placeholder,:host input[type=url].disabled::placeholder,:host input[type=url][aria-disabled=true]::placeholder,:host input[type=week]:disabled::placeholder,:host input[type=week].disabled::placeholder,:host input[type=week][aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host input:not([type]):hover,:host input[type=date]:hover,:host input[type=datetime]:hover,:host input[type=datetime-local]:hover,:host input[type=email]:hover,:host input[type=month]:hover,:host input[type=number]:hover,:host input[type=password]:hover,:host input[type=search]:hover,:host input[type=tel]:hover,:host input[type=text]:hover,:host input[type=time]:hover,:host input[type=url]:hover,:host input[type=week]:hover{background-color:var(--gds-sys-color-base-200)}:host input[type=number]{-moz-appearance:textfield}:host input[type=number]::-webkit-outer-spin-button,:host input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host input{width:100%;line-height:18px;font-size:1rem;font-family:inherit}:host .gds-input-wrapper{position:relative;border:1px solid #868686;border-radius:4px;outline:none;box-sizing:border-box;min-height:2.75rem;line-height:1.5;font-size:1rem;font-family:inherit;display:flex;flex-direction:row}:host .gds-input-wrapper:before{background:transparent;border-radius:0 0 4px 4px;clip-path:inset(4px 0 0 0);content:\"\";display:block;height:4px;position:absolute;transition:.3s ease-in-out;width:100%}:host .gds-input-wrapper:before{bottom:0}.is-invalid :host .gds-input-wrapper{color:var(--intent-danger-background);opacity:1}.is-invalid :host .gds-input-wrapper:before{background:var(--intent-danger-background);clip-path:inset(1px 0 0 0)}:host .gds-input-wrapper.nggv-field--error{border-bottom:.125rem solid #9f000a!important;height:100%}:host .gds-input-wrapper *,:host .gds-input-wrapper *:before,:host .gds-input-wrapper *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group-prefix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-right-radius:0!important;border-bottom-right-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-prefix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-prefix{min-width:initial}}:host .gds-input-wrapper .input-group-prefix:empty{display:none}:host .gds-input-wrapper .input-group-suffix{min-height:2.5rem;border:none;border-radius:3px;height:2.625rem;min-width:2.625rem;border-top-left-radius:0!important;border-bottom-left-radius:0!important;display:flex;align-items:center;justify-content:center}:host .gds-input-wrapper .input-group-suffix[disabled]{background-color:#f8f8f8!important;color:#adadad}@media (max-width: 35.98em){:host .gds-input-wrapper .input-group-suffix{min-width:initial}}:host .gds-input-wrapper .input-group-suffix:empty{display:none}:host .gds-input-wrapper .input-group{width:100%}:host .gds-input-wrapper .input-group input{outline:none;min-height:2.5rem;height:2.625rem;line-height:1.5;font-size:1rem;font-family:inherit;border:none;min-height:2.375rem;width:100%}:host .gds-input-wrapper .input-group input *,:host .gds-input-wrapper .input-group input *:before,:host .gds-input-wrapper .input-group input *:after{box-sizing:border-box}:host .gds-input-wrapper .input-group input:hover{border-color:#41b0ee}:host .gds-input-wrapper .input-group input:focus{outline-color:#1a1a1a;outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .gds-input-wrapper .input-group input:active{border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]{background-color:#f8f8f8;border-color:#cecece}:host .gds-input-wrapper .input-group input[disabled]::placeholder{color:#cecece}:host .gds-input-wrapper .input-group input:not(:focus){border-right:none;padding-right:0}:host .gds-input-wrapper .input-group input:focus{padding-right:0}:host .gds-input-wrapper:has(.input-group-prefix:not(:empty)) .input-group input{border-bottom-left-radius:0;border-top-left-radius:0}:host .gds-input-wrapper:has(.input-group-suffix:not(:empty)) .input-group input{border-bottom-right-radius:0;border-top-right-radius:0}:host.small label:not(.form-control){line-height:1rem;font-size:.875rem}:host.small label+.form-info{margin-bottom:.25rem}:host.small label+.gds-input-wrapper{margin-top:.25rem}:host.small .gds-input-wrapper{min-height:2rem}:host.small .gds-input-wrapper .input-group input{padding:.38rem .5rem;line-height:1rem;height:1.875rem;min-height:1.75rem;font-size:.875rem}:host.small .gds-input-wrapper .input-group-suffix,:host.small .gds-input-wrapper .input-group-prefix{height:1.875rem;min-height:1.75rem;min-width:initial}:host.small .gds-form-item__footer:not(:empty){margin-top:.25rem}:host label:is(label),:host .label:is(label),:host legend:is(label){margin-bottom:0}:host label.form-control,:host .label.form-control,:host legend.form-control{width:fit-content}@supports (-moz-appearance: none){:host label.form-control:focus:not(:focus-visible),:host .label.form-control:focus:not(:focus-visible),:host legend.form-control:focus:not(:focus-visible){box-shadow:none;outline:0}:host label.form-control:focus,:host label.form-control:focus-within,:host .label.form-control:focus,:host .label.form-control:focus-within,:host legend.form-control:focus,:host legend.form-control:focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}}:host label:not(.form-control),:host .label:not(.form-control),:host legend:not(.form-control){font-weight:500;width:100%;line-height:1.25rem}:host label+input,:host label+textarea,fieldset :host label+div,:host label+button,:host label+.group-stepper,:host label+.stepper-wrapper,:host label+.group,:host .label+input,:host .label+textarea,fieldset :host .label+div,:host .label+button,:host .label+.group-stepper,:host .label+.stepper-wrapper,:host .label+.group,:host legend+input,:host legend+textarea,fieldset :host legend+div,:host legend+button,:host legend+.group-stepper,:host legend+.stepper-wrapper,:host legend+.group{margin-top:.5rem}:host label+.form-info,:host .label+.form-info,:host legend+.form-info{margin-bottom:.5rem}:host label+.gds-input-wrapper,:host label+.nggv-field--locked{margin-top:.5rem}:host .gds-field-label--optional{font-weight:400}:host .form-info{font-size:.875rem;line-height:1.25rem;width:100%}\n"] }]
5037
5049
  }], ctorParameters: () => [{ type: i1$1.NgControl, decorators: [{
5038
5050
  type: Self
5039
5051
  }, {
@@ -5530,11 +5542,11 @@ class NggvDialogComponent {
5530
5542
  this.configurableFocusTrap?.destroy();
5531
5543
  }
5532
5544
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvDialogComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1$3.ConfigurableFocusTrapFactory }], target: i0.ɵɵFactoryTarget.Component }); }
5533
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvDialogComponent, selector: "nggv-dialog", inputs: { thook: "thook", shown: "shown", initiallyShown: "initiallyShown", heading: "heading", title: "title", content: "content", autoClose: "autoClose", payload: "payload", dialogTitleId: "dialogTitleId", dialogBodyId: "dialogBodyId", closeModalOnEscape: "closeModalOnEscape", closeButtonAriaLabel: "closeButtonAriaLabel", buttons: "buttons" }, outputs: { nggvCloseEvent: "nggvCloseEvent", nggvPositiveEvent: "nggvPositiveEvent", nggvNeutralEvent: "nggvNeutralEvent", nggvNegativeEvent: "nggvNegativeEvent", nggvDangerEvent: "nggvDangerEvent" }, host: { listeners: { "click": "close($event,\"host\")", "document:keydown.escape": "close($event)", "keydown": "focusTrap($event)" }, properties: { "attr.data-thook": "this.thook", "class.gds-modal-dialog": "this.baseClass", "attr.aria-hidden": "this.ariaHidden" } }, viewQueries: [{ propertyName: "dialogRef", first: true, predicate: ["dialog"], descendants: true }], exportAs: ["dialog"], ngImport: i0, template: "<ng-container *ngIf=\"shown\">\n <div class=\"modal-dialog__wrapper\" [class.-active]=\"shown\">\n <div\n class=\"modal-dialog__container\"\n *transloco=\"let t\"\n #dialog\n role=\"dialog\"\n aria-dialog=\"true\"\n [attr.aria-labelledby]=\"dialogTitleId\"\n [attr.aria-describedby]=\"dialogBodyId\"\n >\n <header class=\"modal-dialog__heading\">\n <h3 [attr.id]=\"dialogTitleId\">{{ t(heading || title || '') }}</h3>\n <button\n data-thook=\"dialog-close\"\n (click)=\"onAction($event, 'close')\"\n (keydown.enter)=\"onAction($event, 'close')\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n class=\"nggv-modal-slideout__close\"\n >\n <i></i>\n </button>\n </header>\n <section class=\"modal-dialog__body\" [attr.id]=\"dialogBodyId\">\n <div [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </section>\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger-confirm\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n <button\n class=\"danger\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.danger || 'danger')\"\n (click)=\"onAction($event, 'danger')\"\n (keydown.enter)=\"onAction($event, 'danger')\"\n *ngIf=\"_buttons && _buttons.danger\"\n >\n {{ t(_buttons.danger) }}\n </button>\n <button\n class=\"submit\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n <div class=\"nggv-backdrop\"></div>\n </div>\n</ng-container>\n", styles: [":host{--grey-500: rgb(222, 222, 222);--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--sg-border-color: #e9e9e9;--sg-border-radius: .25rem;--sg-border-width-50: .5px;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .modal-dialog__wrapper{inset:0;position:fixed;display:grid;place-content:center;z-index:calc(var(--sg-z-index-modal-backdrop) + 1)}:host .modal-dialog__container{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:initial;width:375px;max-width:95vw}:host .modal-dialog__container>.header,:host .modal-dialog__container>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__container>.header h3,:host .modal-dialog__container>.header .h3,:host .modal-dialog__container>header h3,:host .modal-dialog__container>header .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.header h3+.close,:host .modal-dialog__container>.header .h3+.close,:host .modal-dialog__container>header h3+.close,:host .modal-dialog__container>header .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__container>.body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__container>.body p{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-left:.75rem}}:host .modal-dialog__container.medium{width:512px}:host .modal-dialog__container.large{width:720px}:host .modal-dialog__heading{box-sizing:border-box;padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__heading h3,:host .modal-dialog__heading .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__heading h3+.close,:host .modal-dialog__heading .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__body p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .modal-dialog__heading,:host .modal-dialog__body{box-sizing:border-box}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem;min-height:2rem;min-width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .submit{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .submit:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .submit[aria-selected=true],:host .modal-dialog__actions .submit:active,:host .modal-dialog__actions .submit.active,:host .modal-dialog__actions .submit.active:hover,:host .modal-dialog__actions .submit:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .submit:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .submit:disabled,:host .modal-dialog__actions .submit.disabled,:host .modal-dialog__actions .submit[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .submit:disabled::placeholder,:host .modal-dialog__actions .submit.disabled::placeholder,:host .modal-dialog__actions .submit[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger-confirm{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger-confirm:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger-confirm[aria-selected=true],:host .modal-dialog__actions .danger-confirm:active,:host .modal-dialog__actions .danger-confirm.active,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger-confirm[aria-selected]:hover,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{opacity:.9}:host .modal-dialog__actions .danger-confirm:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger-confirm:focus,:host .modal-dialog__actions .danger-confirm:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger:disabled,:host .modal-dialog__actions .danger.disabled,:host .modal-dialog__actions .danger[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .danger:disabled::placeholder,:host .modal-dialog__actions .danger.disabled::placeholder,:host .modal-dialog__actions .danger[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }] }); }
5545
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvDialogComponent, selector: "nggv-dialog", inputs: { thook: "thook", shown: "shown", initiallyShown: "initiallyShown", heading: "heading", title: "title", content: "content", autoClose: "autoClose", payload: "payload", dialogTitleId: "dialogTitleId", dialogBodyId: "dialogBodyId", closeModalOnEscape: "closeModalOnEscape", closeButtonAriaLabel: "closeButtonAriaLabel", buttons: "buttons" }, outputs: { nggvCloseEvent: "nggvCloseEvent", nggvPositiveEvent: "nggvPositiveEvent", nggvNeutralEvent: "nggvNeutralEvent", nggvNegativeEvent: "nggvNegativeEvent", nggvDangerEvent: "nggvDangerEvent" }, host: { listeners: { "click": "close($event,\"host\")", "document:keydown.escape": "close($event)", "keydown": "focusTrap($event)" }, properties: { "attr.data-thook": "this.thook", "class.gds-modal-dialog": "this.baseClass", "attr.aria-hidden": "this.ariaHidden" } }, viewQueries: [{ propertyName: "dialogRef", first: true, predicate: ["dialog"], descendants: true }], exportAs: ["dialog"], ngImport: i0, template: "<ng-container *ngIf=\"shown\">\n <div class=\"modal-dialog__wrapper\" [class.-active]=\"shown\">\n <div\n class=\"modal-dialog__container\"\n *transloco=\"let t\"\n #dialog\n role=\"dialog\"\n aria-dialog=\"true\"\n [attr.aria-labelledby]=\"dialogTitleId\"\n [attr.aria-describedby]=\"dialogBodyId\"\n >\n <header class=\"modal-dialog__heading\">\n <h3 [attr.id]=\"dialogTitleId\">{{ t(heading || title || '') }}</h3>\n <button\n data-thook=\"dialog-close\"\n (click)=\"onAction($event, 'close')\"\n (keydown.enter)=\"onAction($event, 'close')\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n class=\"nggv-modal-slideout__close\"\n >\n <i></i>\n </button>\n </header>\n <section class=\"modal-dialog__body\" [attr.id]=\"dialogBodyId\">\n <div [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </section>\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger-confirm\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n <button\n class=\"danger\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.danger || 'danger')\"\n (click)=\"onAction($event, 'danger')\"\n (keydown.enter)=\"onAction($event, 'danger')\"\n *ngIf=\"_buttons && _buttons.danger\"\n >\n {{ t(_buttons.danger) }}\n </button>\n <button\n class=\"submit\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n <div class=\"nggv-backdrop\"></div>\n </div>\n</ng-container>\n", styles: [":host{--grey-500: rgb(222, 222, 222);--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--sg-border-color: #e9e9e9;--sg-border-radius: .25rem;--sg-border-width-50: .5px;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .modal-dialog__wrapper{inset:0;position:fixed;display:grid;place-content:center;z-index:calc(var(--sg-z-index-modal-backdrop) + 1)}:host .modal-dialog__container{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:initial;width:375px;max-width:95vw}:host .modal-dialog__container>.header,:host .modal-dialog__container>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__container>.header h3,:host .modal-dialog__container>.header .h3,:host .modal-dialog__container>header h3,:host .modal-dialog__container>header .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.header h3+.close,:host .modal-dialog__container>.header .h3+.close,:host .modal-dialog__container>header h3+.close,:host .modal-dialog__container>header .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__container>.body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__container>.body p{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-left:.75rem}}:host .modal-dialog__container.medium{width:512px}:host .modal-dialog__container.large{width:720px}:host .modal-dialog__heading{box-sizing:border-box;padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__heading h3,:host .modal-dialog__heading .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__heading h3+.close,:host .modal-dialog__heading .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__body p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .modal-dialog__heading,:host .modal-dialog__body{box-sizing:border-box}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem;min-height:2rem;min-width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .submit{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .submit:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .submit[aria-selected=true],:host .modal-dialog__actions .submit:active,:host .modal-dialog__actions .submit.active,:host .modal-dialog__actions .submit.active:hover,:host .modal-dialog__actions .submit:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .submit:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .submit:disabled,:host .modal-dialog__actions .submit.disabled,:host .modal-dialog__actions .submit[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .submit:disabled::placeholder,:host .modal-dialog__actions .submit.disabled::placeholder,:host .modal-dialog__actions .submit[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger-confirm{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger-confirm:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger-confirm[aria-selected=true],:host .modal-dialog__actions .danger-confirm:active,:host .modal-dialog__actions .danger-confirm.active,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger-confirm[aria-selected]:hover,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{opacity:.9}:host .modal-dialog__actions .danger-confirm:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger-confirm:focus,:host .modal-dialog__actions .danger-confirm:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger:disabled,:host .modal-dialog__actions .danger.disabled,:host .modal-dialog__actions .danger[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .danger:disabled::placeholder,:host .modal-dialog__actions .danger.disabled::placeholder,:host .modal-dialog__actions .danger[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }] }); }
5534
5546
  }
5535
5547
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvDialogComponent, decorators: [{
5536
5548
  type: Component,
5537
- args: [{ selector: 'nggv-dialog', exportAs: 'dialog', template: "<ng-container *ngIf=\"shown\">\n <div class=\"modal-dialog__wrapper\" [class.-active]=\"shown\">\n <div\n class=\"modal-dialog__container\"\n *transloco=\"let t\"\n #dialog\n role=\"dialog\"\n aria-dialog=\"true\"\n [attr.aria-labelledby]=\"dialogTitleId\"\n [attr.aria-describedby]=\"dialogBodyId\"\n >\n <header class=\"modal-dialog__heading\">\n <h3 [attr.id]=\"dialogTitleId\">{{ t(heading || title || '') }}</h3>\n <button\n data-thook=\"dialog-close\"\n (click)=\"onAction($event, 'close')\"\n (keydown.enter)=\"onAction($event, 'close')\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n class=\"nggv-modal-slideout__close\"\n >\n <i></i>\n </button>\n </header>\n <section class=\"modal-dialog__body\" [attr.id]=\"dialogBodyId\">\n <div [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </section>\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger-confirm\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n <button\n class=\"danger\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.danger || 'danger')\"\n (click)=\"onAction($event, 'danger')\"\n (keydown.enter)=\"onAction($event, 'danger')\"\n *ngIf=\"_buttons && _buttons.danger\"\n >\n {{ t(_buttons.danger) }}\n </button>\n <button\n class=\"submit\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n <div class=\"nggv-backdrop\"></div>\n </div>\n</ng-container>\n", styles: [":host{--grey-500: rgb(222, 222, 222);--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--sg-border-color: #e9e9e9;--sg-border-radius: .25rem;--sg-border-width-50: .5px;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .modal-dialog__wrapper{inset:0;position:fixed;display:grid;place-content:center;z-index:calc(var(--sg-z-index-modal-backdrop) + 1)}:host .modal-dialog__container{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:initial;width:375px;max-width:95vw}:host .modal-dialog__container>.header,:host .modal-dialog__container>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__container>.header h3,:host .modal-dialog__container>.header .h3,:host .modal-dialog__container>header h3,:host .modal-dialog__container>header .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.header h3+.close,:host .modal-dialog__container>.header .h3+.close,:host .modal-dialog__container>header h3+.close,:host .modal-dialog__container>header .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__container>.body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__container>.body p{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-left:.75rem}}:host .modal-dialog__container.medium{width:512px}:host .modal-dialog__container.large{width:720px}:host .modal-dialog__heading{box-sizing:border-box;padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__heading h3,:host .modal-dialog__heading .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__heading h3+.close,:host .modal-dialog__heading .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__body p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .modal-dialog__heading,:host .modal-dialog__body{box-sizing:border-box}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem;min-height:2rem;min-width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .submit{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .submit:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .submit[aria-selected=true],:host .modal-dialog__actions .submit:active,:host .modal-dialog__actions .submit.active,:host .modal-dialog__actions .submit.active:hover,:host .modal-dialog__actions .submit:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .submit:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .submit:disabled,:host .modal-dialog__actions .submit.disabled,:host .modal-dialog__actions .submit[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .submit:disabled::placeholder,:host .modal-dialog__actions .submit.disabled::placeholder,:host .modal-dialog__actions .submit[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger-confirm{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger-confirm:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger-confirm[aria-selected=true],:host .modal-dialog__actions .danger-confirm:active,:host .modal-dialog__actions .danger-confirm.active,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger-confirm[aria-selected]:hover,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{opacity:.9}:host .modal-dialog__actions .danger-confirm:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger-confirm:focus,:host .modal-dialog__actions .danger-confirm:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger:disabled,:host .modal-dialog__actions .danger.disabled,:host .modal-dialog__actions .danger[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .danger:disabled::placeholder,:host .modal-dialog__actions .danger.disabled::placeholder,:host .modal-dialog__actions .danger[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}\n"] }]
5549
+ args: [{ selector: 'nggv-dialog', exportAs: 'dialog', template: "<ng-container *ngIf=\"shown\">\n <div class=\"modal-dialog__wrapper\" [class.-active]=\"shown\">\n <div\n class=\"modal-dialog__container\"\n *transloco=\"let t\"\n #dialog\n role=\"dialog\"\n aria-dialog=\"true\"\n [attr.aria-labelledby]=\"dialogTitleId\"\n [attr.aria-describedby]=\"dialogBodyId\"\n >\n <header class=\"modal-dialog__heading\">\n <h3 [attr.id]=\"dialogTitleId\">{{ t(heading || title || '') }}</h3>\n <button\n data-thook=\"dialog-close\"\n (click)=\"onAction($event, 'close')\"\n (keydown.enter)=\"onAction($event, 'close')\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n class=\"nggv-modal-slideout__close\"\n >\n <i></i>\n </button>\n </header>\n <section class=\"modal-dialog__body\" [attr.id]=\"dialogBodyId\">\n <div [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </section>\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger-confirm\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n <button\n class=\"danger\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.danger || 'danger')\"\n (click)=\"onAction($event, 'danger')\"\n (keydown.enter)=\"onAction($event, 'danger')\"\n *ngIf=\"_buttons && _buttons.danger\"\n >\n {{ t(_buttons.danger) }}\n </button>\n <button\n class=\"submit\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n <div class=\"nggv-backdrop\"></div>\n </div>\n</ng-container>\n", styles: [":host{--grey-500: rgb(222, 222, 222);--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--sg-border-color: #e9e9e9;--sg-border-radius: .25rem;--sg-border-width-50: .5px;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .modal-dialog__wrapper{inset:0;position:fixed;display:grid;place-content:center;z-index:calc(var(--sg-z-index-modal-backdrop) + 1)}:host .modal-dialog__container{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:initial;width:375px;max-width:95vw}:host .modal-dialog__container>.header,:host .modal-dialog__container>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__container>.header h3,:host .modal-dialog__container>.header .h3,:host .modal-dialog__container>header h3,:host .modal-dialog__container>header .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.header h3+.close,:host .modal-dialog__container>.header .h3+.close,:host .modal-dialog__container>header h3+.close,:host .modal-dialog__container>header .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__container>.body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__container>.body p{margin-bottom:0;margin-top:0}:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .modal-dialog__container>.footer,:host .modal-dialog__container>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .modal-dialog__container>.footer button+button,:host .modal-dialog__container>.footer button+.button,:host .modal-dialog__container>.footer .button+button,:host .modal-dialog__container>.footer .button+.button,:host .modal-dialog__container>footer button+button,:host .modal-dialog__container>footer button+.button,:host .modal-dialog__container>footer .button+button,:host .modal-dialog__container>footer .button+.button{margin-left:.75rem}}:host .modal-dialog__container.medium{width:512px}:host .modal-dialog__container.large{width:720px}:host .modal-dialog__heading{box-sizing:border-box;padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-dialog__heading h3,:host .modal-dialog__heading .h3{margin-bottom:0;margin-top:0}:host .modal-dialog__heading h3+.close,:host .modal-dialog__heading .h3+.close{margin:-7px;min-width:2rem}:host .modal-dialog__body{padding:1rem;overflow:auto;width:100%}:host .modal-dialog__body p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .modal-dialog__heading,:host .modal-dialog__body{box-sizing:border-box}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem;min-height:2rem;min-width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .submit{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .submit:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .submit[aria-selected=true],:host .modal-dialog__actions .submit:active,:host .modal-dialog__actions .submit.active,:host .modal-dialog__actions .submit.active:hover,:host .modal-dialog__actions .submit:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .submit:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .submit:disabled,:host .modal-dialog__actions .submit.disabled,:host .modal-dialog__actions .submit[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .submit:disabled::placeholder,:host .modal-dialog__actions .submit.disabled::placeholder,:host .modal-dialog__actions .submit[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger-confirm{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger-confirm:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger-confirm[aria-selected=true],:host .modal-dialog__actions .danger-confirm:active,:host .modal-dialog__actions .danger-confirm.active,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger-confirm[aria-selected]:hover,:host .modal-dialog__actions .danger-confirm.active:hover,:host .modal-dialog__actions .danger-confirm:active:hover{opacity:.9}:host .modal-dialog__actions .danger-confirm:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger-confirm:focus,:host .modal-dialog__actions .danger-confirm:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger{background:#bb000c;border-color:#bb000c;color:#fff;--color: #fff;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .danger:disabled,:host .modal-dialog__actions .danger.disabled,:host .modal-dialog__actions .danger[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .danger:disabled::placeholder,:host .modal-dialog__actions .danger.disabled::placeholder,:host .modal-dialog__actions .danger[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}\n"] }]
5538
5550
  }], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i1$3.ConfigurableFocusTrapFactory }], propDecorators: { dialogRef: [{
5539
5551
  type: ViewChild,
5540
5552
  args: ['dialog']
@@ -5931,7 +5943,7 @@ class NggvSlideOutComponent {
5931
5943
  this.renderer.removeStyle(document.body, 'overflow');
5932
5944
  }
5933
5945
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NggvSlideOutComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
5934
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvSlideOutComponent, selector: "nggv-slideout-modal", inputs: { side: "side", shown: "shown", initiallyShown: "initiallyShown", heading: "heading", title: "title", content: "content", closable: "closable", autoWidth: "autoWidth", thook: "thook", closeButtonAriaLabel: "closeButtonAriaLabel", buttons: "buttons" }, outputs: { nggvCloseEvent: "nggvCloseEvent", nggvPositiveEvent: "nggvPositiveEvent", nggvNeutralEvent: "nggvNeutralEvent", nggvNegativeEvent: "nggvNegativeEvent" }, host: { listeners: { "click": "close($event,\"host\")", "document:keydown.escape": "close($event)", "keydown": "focusTrap($event)" } }, viewQueries: [{ propertyName: "slideOutRef", first: true, predicate: ["slideOut"], descendants: true }], ngImport: i0, template: "<ng-container *ngIf=\"shown\">\n <div\n [ngClass]=\"{\n 'gds-slide-out--left': fromLeft,\n 'gds-slide-out--right': !fromLeft,\n }\"\n *transloco=\"let t\"\n [class.-active]=\"shown\"\n [attr.data-thook]=\"thook\"\n [attr.aria-hidden]=\"!shown\"\n [@modalAnimation]\n >\n <div\n #slideOut\n class=\"gds-slide-out\"\n [class.auto-width]=\"autoWidth\"\n [class.entered]=\"shown\"\n role=\"dialog\"\n aria-modal=\"true\"\n aria-labelledby=\"gds-modal-title\"\n aria-describedby=\"gds-modal-body\"\n >\n <header class=\"gds-slide-out__header\">\n <h3 id=\"gds-modal-title\">\n {{ heading || title || '' }}\n </h3>\n <button\n data-testid=\"modal-close-button\"\n class=\"nggv-modal-slideout__close\"\n (click)=\"this.close()\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n >\n <i></i>\n </button>\n </header>\n\n <section id=\"modal-body\">\n <div class=\"gds-slide-out__content hide-if-empty\">\n <div *ngIf=\"content\" [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </div>\n <ng-content select=\"[slot='outside-content']\"></ng-content>\n </section>\n\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n\n <button\n class=\"primary\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n\n <div\n class=\"nggv-backdrop\"\n data-thook=\"slideout-backdrop\"\n (click)=\"close()\"\n ></div>\n </div>\n</ng-container>\n", styles: [":host{--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--grey-500: rgb(222, 222, 222);--sg-border-color: hsl(0, 0%, 53%);--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .gds-slide-out{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:fixed;height:100dvh;max-width:512px;min-height:-webkit-fill-available;min-height:-moz-available;min-height:stretch;right:0;top:0;transition:transform .35s cubic-bezier(.33,1,.68,1);transform:translate(100%);z-index:1050;overflow-y:auto}:host .gds-slide-out>.header,:host .gds-slide-out>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .gds-slide-out>.header h3,:host .gds-slide-out>.header .h3,:host .gds-slide-out>header h3,:host .gds-slide-out>header .h3{margin-bottom:0;margin-top:0}:host .gds-slide-out>.header h3+.close,:host .gds-slide-out>.header .h3+.close,:host .gds-slide-out>header h3+.close,:host .gds-slide-out>header .h3+.close{margin:-7px;min-width:2rem}:host .gds-slide-out>.body{padding:1rem;overflow:auto;width:100%}:host .gds-slide-out>.body p{margin-bottom:0;margin-top:0}:host .gds-slide-out>.footer,:host .gds-slide-out>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .gds-slide-out>.footer,:host .gds-slide-out>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-left:.75rem}}:host .gds-slide-out.is-entering,:host .gds-slide-out.entered{transform:translate(0)}:host .gds-slide-out.is-exiting{transform:translate(100%)}:host .gds-slide-out.large{max-width:720px}:host .gds-slide-out>.body{flex:1 0}:host .gds-slide-out.left{left:0}:host .gds-slide-out.gds-slide-out--768{max-width:48rem}:host .gds-slide-out.gds-slide-out--960{max-width:60rem}:host .gds-slide-out.gds-slide-out--768 header,:host .gds-slide-out.gds-slide-out--960 header{padding:1.5rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 .body,:host .gds-slide-out.gds-slide-out--960 .body{padding:2rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 footer,:host .gds-slide-out.gds-slide-out--960 footer{padding:1rem 2rem 2rem}:host .gds-slide-out.auto-width{width:auto;max-width:initial}:host .hide-if-empty:empty{display:none}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .gds-slide-out__content{padding:1rem;overflow:auto;width:100%;overflow:unset}:host .gds-slide-out__content p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .gds-slide-out__header,:host .modal-body,:host .gds-slide-out__content{box-sizing:border-box}:host .modal-slide-out__heading{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-slide-out__heading h3,:host .modal-slide-out__heading .h3{margin-bottom:0;margin-top:0}:host .modal-slide-out__heading h3+.close,:host .modal-slide-out__heading .h3+.close{margin:-7px;min-width:2rem}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .primary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .primary[aria-selected=true],:host .modal-dialog__actions .primary:active,:host .modal-dialog__actions .primary.active,:host .modal-dialog__actions .primary.active:hover,:host .modal-dialog__actions .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .primary:disabled,:host .modal-dialog__actions .primary.disabled,:host .modal-dialog__actions .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .primary:disabled::placeholder,:host .modal-dialog__actions .primary.disabled::placeholder,:host .modal-dialog__actions .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host #sdv-modal-body{flex:1}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }], animations: [
5946
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NggvSlideOutComponent, selector: "nggv-slideout-modal", inputs: { side: "side", shown: "shown", initiallyShown: "initiallyShown", heading: "heading", title: "title", content: "content", closable: "closable", autoWidth: "autoWidth", thook: "thook", closeButtonAriaLabel: "closeButtonAriaLabel", buttons: "buttons" }, outputs: { nggvCloseEvent: "nggvCloseEvent", nggvPositiveEvent: "nggvPositiveEvent", nggvNeutralEvent: "nggvNeutralEvent", nggvNegativeEvent: "nggvNegativeEvent" }, host: { listeners: { "click": "close($event,\"host\")", "document:keydown.escape": "close($event)", "keydown": "focusTrap($event)" } }, viewQueries: [{ propertyName: "slideOutRef", first: true, predicate: ["slideOut"], descendants: true }], ngImport: i0, template: "<ng-container *ngIf=\"shown\">\n <div\n [ngClass]=\"{\n 'gds-slide-out--left': fromLeft,\n 'gds-slide-out--right': !fromLeft,\n }\"\n *transloco=\"let t\"\n [class.-active]=\"shown\"\n [attr.data-thook]=\"thook\"\n [attr.aria-hidden]=\"!shown\"\n [@modalAnimation]\n >\n <div\n #slideOut\n class=\"gds-slide-out\"\n [class.auto-width]=\"autoWidth\"\n [class.entered]=\"shown\"\n role=\"dialog\"\n aria-modal=\"true\"\n aria-labelledby=\"gds-modal-title\"\n aria-describedby=\"gds-modal-body\"\n >\n <header class=\"gds-slide-out__header\">\n <h3 id=\"gds-modal-title\">\n {{ heading || title || '' }}\n </h3>\n <button\n data-testid=\"modal-close-button\"\n class=\"nggv-modal-slideout__close\"\n (click)=\"this.close()\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n >\n <i></i>\n </button>\n </header>\n\n <section id=\"modal-body\">\n <div class=\"gds-slide-out__content hide-if-empty\">\n <div *ngIf=\"content\" [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </div>\n <ng-content select=\"[slot='outside-content']\"></ng-content>\n </section>\n\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n\n <button\n class=\"primary\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n\n <div\n class=\"nggv-backdrop\"\n data-thook=\"slideout-backdrop\"\n (click)=\"close()\"\n ></div>\n </div>\n</ng-container>\n", styles: [":host{--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--grey-500: rgb(222, 222, 222);--sg-border-color: hsl(0, 0%, 53%);--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .gds-slide-out{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:fixed;height:100dvh;max-width:512px;min-height:-webkit-fill-available;min-height:-moz-available;min-height:stretch;right:0;top:0;transition:transform .35s cubic-bezier(.33,1,.68,1);transform:translate(100%);z-index:1050;overflow-y:auto}:host .gds-slide-out>.header,:host .gds-slide-out>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .gds-slide-out>.header h3,:host .gds-slide-out>.header .h3,:host .gds-slide-out>header h3,:host .gds-slide-out>header .h3{margin-bottom:0;margin-top:0}:host .gds-slide-out>.header h3+.close,:host .gds-slide-out>.header .h3+.close,:host .gds-slide-out>header h3+.close,:host .gds-slide-out>header .h3+.close{margin:-7px;min-width:2rem}:host .gds-slide-out>.body{padding:1rem;overflow:auto;width:100%}:host .gds-slide-out>.body p{margin-bottom:0;margin-top:0}:host .gds-slide-out>.footer,:host .gds-slide-out>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .gds-slide-out>.footer,:host .gds-slide-out>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-left:.75rem}}:host .gds-slide-out.is-entering,:host .gds-slide-out.entered{transform:translate(0)}:host .gds-slide-out.is-exiting{transform:translate(100%)}:host .gds-slide-out.large{max-width:720px}:host .gds-slide-out>.body{flex:1 0}:host .gds-slide-out.left{left:0}:host .gds-slide-out.gds-slide-out--768{max-width:48rem}:host .gds-slide-out.gds-slide-out--960{max-width:60rem}:host .gds-slide-out.gds-slide-out--768 header,:host .gds-slide-out.gds-slide-out--960 header{padding:1.5rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 .body,:host .gds-slide-out.gds-slide-out--960 .body{padding:2rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 footer,:host .gds-slide-out.gds-slide-out--960 footer{padding:1rem 2rem 2rem}:host .gds-slide-out.auto-width{width:auto;max-width:initial}:host .hide-if-empty:empty{display:none}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .gds-slide-out__content{padding:1rem;overflow:auto;width:100%;overflow:unset}:host .gds-slide-out__content p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .gds-slide-out__header,:host .modal-body,:host .gds-slide-out__content{box-sizing:border-box}:host .modal-slide-out__heading{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-slide-out__heading h3,:host .modal-slide-out__heading .h3{margin-bottom:0;margin-top:0}:host .modal-slide-out__heading h3+.close,:host .modal-slide-out__heading .h3+.close{margin:-7px;min-width:2rem}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .primary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .primary[aria-selected=true],:host .modal-dialog__actions .primary:active,:host .modal-dialog__actions .primary.active,:host .modal-dialog__actions .primary.active:hover,:host .modal-dialog__actions .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .primary:disabled,:host .modal-dialog__actions .primary.disabled,:host .modal-dialog__actions .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .primary:disabled::placeholder,:host .modal-dialog__actions .primary.disabled::placeholder,:host .modal-dialog__actions .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host #sdv-modal-body{flex:1}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }], animations: [
5935
5947
  trigger('modalAnimation', [
5936
5948
  transition(':enter', [
5937
5949
  query('.gds-slide-out', style({ transform: 'translateX(100%)' }), {
@@ -5983,7 +5995,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
5983
5995
  ]),
5984
5996
  ]),
5985
5997
  ]),
5986
- ], template: "<ng-container *ngIf=\"shown\">\n <div\n [ngClass]=\"{\n 'gds-slide-out--left': fromLeft,\n 'gds-slide-out--right': !fromLeft,\n }\"\n *transloco=\"let t\"\n [class.-active]=\"shown\"\n [attr.data-thook]=\"thook\"\n [attr.aria-hidden]=\"!shown\"\n [@modalAnimation]\n >\n <div\n #slideOut\n class=\"gds-slide-out\"\n [class.auto-width]=\"autoWidth\"\n [class.entered]=\"shown\"\n role=\"dialog\"\n aria-modal=\"true\"\n aria-labelledby=\"gds-modal-title\"\n aria-describedby=\"gds-modal-body\"\n >\n <header class=\"gds-slide-out__header\">\n <h3 id=\"gds-modal-title\">\n {{ heading || title || '' }}\n </h3>\n <button\n data-testid=\"modal-close-button\"\n class=\"nggv-modal-slideout__close\"\n (click)=\"this.close()\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n >\n <i></i>\n </button>\n </header>\n\n <section id=\"modal-body\">\n <div class=\"gds-slide-out__content hide-if-empty\">\n <div *ngIf=\"content\" [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </div>\n <ng-content select=\"[slot='outside-content']\"></ng-content>\n </section>\n\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n\n <button\n class=\"primary\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n\n <div\n class=\"nggv-backdrop\"\n data-thook=\"slideout-backdrop\"\n (click)=\"close()\"\n ></div>\n </div>\n</ng-container>\n", styles: [":host{--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--grey-500: rgb(222, 222, 222);--sg-border-color: hsl(0, 0%, 53%);--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .gds-slide-out{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:fixed;height:100dvh;max-width:512px;min-height:-webkit-fill-available;min-height:-moz-available;min-height:stretch;right:0;top:0;transition:transform .35s cubic-bezier(.33,1,.68,1);transform:translate(100%);z-index:1050;overflow-y:auto}:host .gds-slide-out>.header,:host .gds-slide-out>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .gds-slide-out>.header h3,:host .gds-slide-out>.header .h3,:host .gds-slide-out>header h3,:host .gds-slide-out>header .h3{margin-bottom:0;margin-top:0}:host .gds-slide-out>.header h3+.close,:host .gds-slide-out>.header .h3+.close,:host .gds-slide-out>header h3+.close,:host .gds-slide-out>header .h3+.close{margin:-7px;min-width:2rem}:host .gds-slide-out>.body{padding:1rem;overflow:auto;width:100%}:host .gds-slide-out>.body p{margin-bottom:0;margin-top:0}:host .gds-slide-out>.footer,:host .gds-slide-out>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .gds-slide-out>.footer,:host .gds-slide-out>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-left:.75rem}}:host .gds-slide-out.is-entering,:host .gds-slide-out.entered{transform:translate(0)}:host .gds-slide-out.is-exiting{transform:translate(100%)}:host .gds-slide-out.large{max-width:720px}:host .gds-slide-out>.body{flex:1 0}:host .gds-slide-out.left{left:0}:host .gds-slide-out.gds-slide-out--768{max-width:48rem}:host .gds-slide-out.gds-slide-out--960{max-width:60rem}:host .gds-slide-out.gds-slide-out--768 header,:host .gds-slide-out.gds-slide-out--960 header{padding:1.5rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 .body,:host .gds-slide-out.gds-slide-out--960 .body{padding:2rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 footer,:host .gds-slide-out.gds-slide-out--960 footer{padding:1rem 2rem 2rem}:host .gds-slide-out.auto-width{width:auto;max-width:initial}:host .hide-if-empty:empty{display:none}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .gds-slide-out__content{padding:1rem;overflow:auto;width:100%;overflow:unset}:host .gds-slide-out__content p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .gds-slide-out__header,:host .modal-body,:host .gds-slide-out__content{box-sizing:border-box}:host .modal-slide-out__heading{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-slide-out__heading h3,:host .modal-slide-out__heading .h3{margin-bottom:0;margin-top:0}:host .modal-slide-out__heading h3+.close,:host .modal-slide-out__heading .h3+.close{margin:-7px;min-width:2rem}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .primary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .primary[aria-selected=true],:host .modal-dialog__actions .primary:active,:host .modal-dialog__actions .primary.active,:host .modal-dialog__actions .primary.active:hover,:host .modal-dialog__actions .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .primary:disabled,:host .modal-dialog__actions .primary.disabled,:host .modal-dialog__actions .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .primary:disabled::placeholder,:host .modal-dialog__actions .primary.disabled::placeholder,:host .modal-dialog__actions .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host #sdv-modal-body{flex:1}\n"] }]
5998
+ ], template: "<ng-container *ngIf=\"shown\">\n <div\n [ngClass]=\"{\n 'gds-slide-out--left': fromLeft,\n 'gds-slide-out--right': !fromLeft,\n }\"\n *transloco=\"let t\"\n [class.-active]=\"shown\"\n [attr.data-thook]=\"thook\"\n [attr.aria-hidden]=\"!shown\"\n [@modalAnimation]\n >\n <div\n #slideOut\n class=\"gds-slide-out\"\n [class.auto-width]=\"autoWidth\"\n [class.entered]=\"shown\"\n role=\"dialog\"\n aria-modal=\"true\"\n aria-labelledby=\"gds-modal-title\"\n aria-describedby=\"gds-modal-body\"\n >\n <header class=\"gds-slide-out__header\">\n <h3 id=\"gds-modal-title\">\n {{ heading || title || '' }}\n </h3>\n <button\n data-testid=\"modal-close-button\"\n class=\"nggv-modal-slideout__close\"\n (click)=\"this.close()\"\n [attr.aria-label]=\"closeButtonAriaLabel\"\n >\n <i></i>\n </button>\n </header>\n\n <section id=\"modal-body\">\n <div class=\"gds-slide-out__content hide-if-empty\">\n <div *ngIf=\"content\" [innerHtml]=\"content\"></div>\n <ng-content></ng-content>\n </div>\n <ng-content select=\"[slot='outside-content']\"></ng-content>\n </section>\n\n <footer class=\"modal-dialog__actions\">\n <button\n class=\"danger\"\n type=\"reset\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.negative || 'negative')\"\n (click)=\"onAction($event, 'negative')\"\n (keydown.enter)=\"onAction($event, 'negative')\"\n *ngIf=\"_buttons && _buttons.negative\"\n >\n {{ t(_buttons.negative) }}\n </button>\n\n <button\n class=\"secondary\"\n type=\"button\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.neutral || 'neutral')\"\n (click)=\"onAction($event, 'neutral')\"\n (keydown.enter)=\"onAction($event, 'neutral')\"\n *ngIf=\"_buttons && _buttons.neutral\"\n >\n {{ t(_buttons.neutral) }}\n </button>\n\n <button\n class=\"primary\"\n type=\"submit\"\n [attr.data-thook]=\"'dialog-' + (_buttons?.positive || 'positive')\"\n (click)=\"onAction($event, 'positive')\"\n (keydown.enter)=\"onAction($event, 'positive')\"\n *ngIf=\"_buttons && _buttons.positive\"\n >\n {{ t(_buttons.positive) }}\n </button>\n </footer>\n </div>\n\n <div\n class=\"nggv-backdrop\"\n data-thook=\"slideout-backdrop\"\n (click)=\"close()\"\n ></div>\n </div>\n</ng-container>\n", styles: [":host{--background-hsl: 0deg, 0%, 0%;--gds-ref-pallet-base200: hsl(0, 0%, 91%);--gds-sys-color-base: hsl(0, 0%, 20%);--gds-sys-color-font: hsl(0, 0%, 20%);--gds-sys-shape-corner-round: 50%;--grey-500: rgb(222, 222, 222);--sg-border-color: hsl(0, 0%, 53%);--sg-border-radius: .25rem;--sg-border-width: 1px;--sg-hsl-contrast: 0deg, 0%, 0%;--sg-modal-backdrop-background: rgba(0, 0, 0, .5);--sg-modal-background: #fff;--sg-modal-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .15);--sg-z-index-modal-backdrop: 1040;--sg-z-index-modal: 1050;--text-primary-color: rgb(51, 51, 51)}:host .gds-slide-out{background:var(--sg-modal-background);display:flex;flex-direction:column;box-shadow:var(--sg-modal-box-shadow);position:absolute;width:100%;z-index:var(--sg-z-index-modal);position:fixed;height:100dvh;max-width:512px;min-height:-webkit-fill-available;min-height:-moz-available;min-height:stretch;right:0;top:0;transition:transform .35s cubic-bezier(.33,1,.68,1);transform:translate(100%);z-index:1050;overflow-y:auto}:host .gds-slide-out>.header,:host .gds-slide-out>header{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .gds-slide-out>.header h3,:host .gds-slide-out>.header .h3,:host .gds-slide-out>header h3,:host .gds-slide-out>header .h3{margin-bottom:0;margin-top:0}:host .gds-slide-out>.header h3+.close,:host .gds-slide-out>.header .h3+.close,:host .gds-slide-out>header h3+.close,:host .gds-slide-out>header .h3+.close{margin:-7px;min-width:2rem}:host .gds-slide-out>.body{padding:1rem;overflow:auto;width:100%}:host .gds-slide-out>.body p{margin-bottom:0;margin-top:0}:host .gds-slide-out>.footer,:host .gds-slide-out>footer{padding:1rem;width:100%}@media (min-width: 36em){:host .gds-slide-out>.footer,:host .gds-slide-out>footer{display:flex;justify-content:flex-end}}@media (max-width: 35.98em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-top:.75rem}}@media (min-width: 36em){:host .gds-slide-out>.footer button+button,:host .gds-slide-out>.footer button+.button,:host .gds-slide-out>.footer .button+button,:host .gds-slide-out>.footer .button+.button,:host .gds-slide-out>footer button+button,:host .gds-slide-out>footer button+.button,:host .gds-slide-out>footer .button+button,:host .gds-slide-out>footer .button+.button{margin-left:.75rem}}:host .gds-slide-out.is-entering,:host .gds-slide-out.entered{transform:translate(0)}:host .gds-slide-out.is-exiting{transform:translate(100%)}:host .gds-slide-out.large{max-width:720px}:host .gds-slide-out>.body{flex:1 0}:host .gds-slide-out.left{left:0}:host .gds-slide-out.gds-slide-out--768{max-width:48rem}:host .gds-slide-out.gds-slide-out--960{max-width:60rem}:host .gds-slide-out.gds-slide-out--768 header,:host .gds-slide-out.gds-slide-out--960 header{padding:1.5rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 .body,:host .gds-slide-out.gds-slide-out--960 .body{padding:2rem 2rem 1rem}:host .gds-slide-out.gds-slide-out--768 footer,:host .gds-slide-out.gds-slide-out--960 footer{padding:1rem 2rem 2rem}:host .gds-slide-out.auto-width{width:auto;max-width:initial}:host .hide-if-empty:empty{display:none}:host .nggv-backdrop{background:var(--sg-modal-backdrop-background);inset:0;position:fixed;z-index:var(--sg-z-index-modal-backdrop);display:block;transition:opacity .5s cubic-bezier(.33,1,.68,1)}:host .nggv-backdrop--transparent{opacity:0}:host .nggv-backdrop--transparent.entered,:host .nggv-backdrop--transparent.is-entering{opacity:1}:host .nggv-backdrop--transparent.is-exiting{opacity:0}:host .gds-slide-out__content{padding:1rem;overflow:auto;width:100%;overflow:unset}:host .gds-slide-out__content p{margin-bottom:0;margin-top:0}:host .modal-dialog__actions,:host .gds-slide-out__header,:host .modal-body,:host .gds-slide-out__content{box-sizing:border-box}:host .modal-slide-out__heading{padding:1rem;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);display:inline-flex;justify-content:space-between;align-items:center;width:100%}:host .modal-slide-out__heading h3,:host .modal-slide-out__heading .h3{margin-bottom:0;margin-top:0}:host .modal-slide-out__heading h3+.close,:host .modal-slide-out__heading .h3+.close{margin:-7px;min-width:2rem}:host .nggv-modal-slideout__close{background-color:transparent;padding:0;font-size:0;background:var(--gds-sys-color-surface);border:0;border-radius:50%;content:\"\";cursor:pointer;display:flex;font-family:inherit;height:2rem;position:relative;width:2rem}@media (hover: none) and (pointer: coarse){:host .nggv-modal-slideout__close:not(:disabled):not(.disabled){padding:.375rem;height:2.75rem;width:2.75rem}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>i{background:var(--gds-sys-color-base-200);height:2rem;width:2rem;border-radius:50%;position:relative;--color: var(--gds-sys-color-base)}:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:after,:host .nggv-modal-slideout__close:not(:disabled):not(.disabled)>div:before{height:.789375rem;width:.130625rem;top:.625rem}}:host .nggv-modal-slideout__close:focus:not(:focus-visible){box-shadow:none;outline:0}:host .nggv-modal-slideout__close:focus,:host .nggv-modal-slideout__close:focus-visible i{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .nggv-modal-slideout__close>i{border-radius:var(--gds-sys-shape-corner-round);display:block;width:100%;height:100%}:host .nggv-modal-slideout__close>i:after,:host .nggv-modal-slideout__close>i:before{background:var(--gds-sys-color-font);content:\"\";display:block;height:.789375rem;width:.130625rem;border-radius:.5px;left:calc(50% - .0625rem);position:absolute;top:.625rem}:host .nggv-modal-slideout__close>i:after{transform:rotate(45deg)}:host .nggv-modal-slideout__close>i:before{transform:rotate(-45deg)}:host .nggv-modal-slideout__close>svg path{fill:var(--gds-sys-color-font)}@media (min-width: 48em){:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover>i{background:color-mix(in srgb,var(--gds-sys-color-font) 10%,transparent)}:host .nggv-modal-slideout__close:not(:disabled,.disabled):hover:active>i{background:color-mix(in srgb,var(--gds-sys-color-font) 20%,transparent)}}:host .modal-dialog__actions button{background-color:transparent;border:0;cursor:pointer;padding:0;padding:.75rem 1rem;border-radius:var(--sg-border-radius);border:solid var(--sg-border-width) var(--sg-border-color);font-weight:500;min-height:2.75rem;align-items:center;display:inline-flex;justify-content:center;font-size:1rem;font-family:inherit}:host .modal-dialog__actions button:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions button:focus,:host .modal-dialog__actions button:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}@media (max-width: 35.98em){:host .modal-dialog__actions button{min-width:100%}}@media screen and (-ms-high-contrast: active){:host .modal-dialog__actions button{border:2px solid currentcolor}}:host .modal-dialog__actions button.small{min-height:2rem;padding:.4375rem .75rem;font-size:.875rem;line-height:1rem}:host .modal-dialog__actions button.large{min-height:4rem;padding:1rem 1.5rem;font-size:1.5rem;line-height:2rem}:host .modal-dialog__actions .primary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:#007ac7;border-color:#007ac7;color:#fff;--color: #fff}:host .modal-dialog__actions .primary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .primary[aria-selected=true],:host .modal-dialog__actions .primary:active,:host .modal-dialog__actions .primary.active,:host .modal-dialog__actions .primary.active:hover,:host .modal-dialog__actions .primary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .primary:focus-visible{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3!important}:host .modal-dialog__actions .primary:disabled,:host .modal-dialog__actions .primary.disabled,:host .modal-dialog__actions .primary[aria-disabled=true]{background:var(--form-control-primary-bg-disabled)!important;color:var(--text-primary-disabled-color)!important;border-color:var(--border-primary-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .primary:disabled::placeholder,:host .modal-dialog__actions .primary.disabled::placeholder,:host .modal-dialog__actions .primary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .secondary{transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;background:transparent;border-color:#007ac7;color:#007ac7;--color: rgb(0, 122, 199)}:host .modal-dialog__actions .secondary:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .secondary:focus,:host .modal-dialog__actions .secondary:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host .modal-dialog__actions .secondary:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .modal-dialog__actions .secondary[aria-selected=true],:host .modal-dialog__actions .secondary:active,:host .modal-dialog__actions .secondary.active,:host .modal-dialog__actions .secondary.active:hover,:host .modal-dialog__actions .secondary:active:hover{background-color:#007ac7;color:#fff;--background: rgb(0, 122, 199);--color: rgb(255, 255, 255);border-color:#007ac7}:host .modal-dialog__actions .secondary:disabled,:host .modal-dialog__actions .secondary.disabled,:host .modal-dialog__actions .secondary[aria-disabled=true]{background:var(--sg-form-control-bg-disabled)!important;color:var(--text-disabled-color)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed}:host .modal-dialog__actions .secondary:disabled::placeholder,:host .modal-dialog__actions .secondary.disabled::placeholder,:host .modal-dialog__actions .secondary[aria-disabled=true]::placeholder{color:var(--text-disabled-color)}:host .modal-dialog__actions .danger{color:#bb000c;--color: rgb(187, 0, 12);border-color:transparent;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s}:host .modal-dialog__actions .danger:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#d81a1a;color:#fff;--background: rgb(216, 26, 26);--color: rgb(255, 255, 255);border-color:#d81a1a}:host .modal-dialog__actions .danger[aria-selected=true],:host .modal-dialog__actions .danger:active,:host .modal-dialog__actions .danger.active,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{background-color:#bb000c;color:#fff;--background: rgb(187, 0, 12);--color: rgb(255, 255, 255);border-color:#bb000c}:host .modal-dialog__actions .danger[aria-selected]:hover,:host .modal-dialog__actions .danger.active:hover,:host .modal-dialog__actions .danger:active:hover{opacity:.9}:host .modal-dialog__actions .danger:focus:not(:focus-visible){box-shadow:none;outline:0}:host .modal-dialog__actions .danger:focus,:host .modal-dialog__actions .danger:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}:host #sdv-modal-body{flex:1}\n"] }]
5987
5999
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { slideOutRef: [{
5988
6000
  type: ViewChild,
5989
6001
  args: ['slideOut']
@@ -6941,11 +6953,11 @@ class TableComponent {
6941
6953
  row?.setValue(!row.value);
6942
6954
  }
6943
6955
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6944
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TableComponent, selector: "nggv-table", inputs: { tableColumns: "tableColumns", tableData: "tableData", rowId: "rowId", hasRowSpan: "hasRowSpan", selectable: "selectable", hiddenCheckboxRowIds: "hiddenCheckboxRowIds", expandable: "expandable", expandedByDefault: "expandedByDefault", subItemsProp: "subItemsProp", allowLocalSort: "allowLocalSort", thook: "thook", trThookFn: "trThookFn", ariaLabelCheckboxTh: "ariaLabelCheckboxTh", ariaLabelCheckboxTr: "ariaLabelCheckboxTr", ariaLabelsOrderBy: "ariaLabelsOrderBy" }, outputs: { ngvRowClick: "ngvRowClick", ngvRowSelect: "ngvRowSelect", ngvOrderBy: "ngvOrderBy" }, queries: [{ propertyName: "appendedRowsTemplate", first: true, predicate: TableAppendableRowsTemplateDirective, descendants: true }, { propertyName: "customFooterTemplate", first: true, predicate: TableFooterTemplateDirective, descendants: true }, { propertyName: "customTemplates", predicate: TableTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-template #sortableThTemplate let-column>\n <button class=\"sg-table-sort\" *transloco=\"let t\">\n <ng-template #thButtonTemplate>\n {{ t(column.label ?? '') }}\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else thButtonTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n </button>\n</ng-template>\n\n<ng-template #notSortableThTemplate let-column>\n <ng-template #defaultThTemplate>\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else defaultThTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n</ng-template>\n<table class=\"gds-table\" *transloco=\"let t\">\n <!-- Table header -->\n <thead>\n <tr>\n <!-- Checkbox column for header -->\n <th *ngIf=\"selectable\" class=\"column__check\">\n <div class=\"gds-field-checkbox-wrap\">\n <label\n [attr.for]=\"'cb_header__' + initId\"\n class=\"form-control\"\n id=\"thead-checkbox\"\n >\n <input\n type=\"checkbox\"\n [formControl]=\"groupSelector\"\n [attr.aria-label]=\"ariaLabelCheckboxTh\"\n [attr.id]=\"'cb_header__' + initId\"\n [attr.data-thook]=\"thook\"\n />\n <i></i>\n </label>\n </div>\n </th>\n\n <!-- Other columns -->\n <th\n *ngFor=\"let column of tableColumns\"\n [columnType]=\"column.valueType\"\n [sortable]=\"column.sortable\"\n [sortOrder]=\"column.order\"\n [thook]=\"'column-header-' + !!column.property\"\n (click)=\"toggleSortOrder(column)\"\n (keydown.space)=\"toggleSortOrderWithSpace($event, column)\"\n [attr.aria-label]=\"getAriaLabel(column)\"\n [attr.aria-sort]=\"column.order + 'ending'\"\n >\n <ng-container *ngIf=\"column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n sortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n notSortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n </th>\n </tr>\n </thead>\n\n <!-- Table body -->\n <tbody [formGroup]=\"rowSelectors\">\n <ng-container *ngFor=\"let item of tableData; let i = index\">\n <tr\n [class.row__expand]=\"expandable\"\n [attr.data-thook]=\"item | trThook: i : trThookFn\"\n [attr.data-hasrowspan]=\"hasRowSpan(item)\"\n >\n <!-- Checkbox column for row -->\n <td\n *ngIf=\"selectable && !hiddenCheckboxRowIds.includes(item[rowId])\"\n class=\"column__check\"\n >\n <div class=\"gds-field-checkbox-wrap\">\n <label\n [attr.for]=\"'cb_row__' + initId + '_' + i\"\n class=\"form-control\"\n >\n <input\n *ngIf=\"rowSelectors.get(item[rowId])\"\n type=\"checkbox\"\n [formControlName]=\"item[rowId]\"\n [attr.aria-label]=\"ariaLabelCheckboxTr\"\n [attr.id]=\"'cb_row__' + initId + '_' + i\"\n [attr.data-thook]=\"'row-select-' + i\"\n />\n <i></i>\n </label>\n </div>\n </td>\n\n <!-- Other columns -->\n <td\n *ngFor=\"let column of tableColumns; let i = index\"\n [columnType]=\"column.valueType\"\n [value]=\"item[column.property]\"\n (click)=\"propagateItemClick(item, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"expandable && i === 0; else nonExpandableTemplate\">\n <div\n class=\"gds-item-field-wrap\"\n [ngClass]=\"{ 'no-sub-items': item.subItems.length === 0 }\"\n >\n <span\n *ngIf=\"item.subItems.length > 0\"\n role=\"button\"\n tabindex=\"0\"\n class=\"chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n <span class=\"gds-item-field-text\">\n {{ item[column.property] }} ({{ item.subItems.length }})\n <div *ngIf=\"column.columnLabel\" class=\"gds-item-field-extra-label\">\n {{ item[column.columnLabel] }}\n </div>\n </span>\n </div>\n </ng-container>\n\n <ng-template #nonExpandableTemplate>\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: item }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ item[column.property] }}\n </ng-template>\n </ng-template>\n </td>\n </tr>\n\n <!-- Expanded Sub Items -->\n <ng-container *ngIf=\"expandable && rowSelectors.get(item[rowId])?.value\">\n <tr *ngFor=\"let subItem of item[subItemsProp]\">\n <td\n *ngFor=\"let column of tableColumns\"\n class=\"web-view\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n (click)=\"propagateItemClick(subItem, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </td>\n\n <td\n class=\"mobile-view\"\n [attr.colspan]=\"tableColumns.length\"\n (click)=\"propagateItemClick(subItem)\"\n >\n <dl class=\"mobile-view-field-wrap\">\n <ng-container *ngFor=\"let column of tableColumns\">\n <div\n *ngIf=\"!column.hidePropertyOnMobile\"\n class=\"mobile-view-field\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n >\n <dt *ngIf=\"!column.hideLabelOnMobile\">\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </dt>\n <dd [ngStyle]=\"column.boldTextOnMobile ? { 'font-weight': '500' } : {'font-weight': '400'}\">\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\"></ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </dd>\n <ng-content></ng-content>\n </div>\n </ng-container>\n </dl>\n <span\n role=\"button\"\n tabindex=\"0\"\n class=\"nav-chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n </td>\n </tr>\n </ng-container>\n\n <!-- Custom appended rows -->\n <ng-container *ngIf=\"appendedRowsTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container\n *ngTemplateOutlet=\"trTemplate || null; context: { $implicit: item }\"\n >\n </ng-container>\n </ng-container>\n </ng-container>\n </tbody>\n\n <!-- Table footer -->\n <tfoot *ngIf=\"customFooterTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container *ngTemplateOutlet=\"trTemplate || null\"> </ng-container>\n </tfoot>\n</table>\n", styles: ["::ng-deep .gds-table{--gds-ref-pallet-base100: #f8f8f8;--gds-ref-pallet-base600: hsl(0, 0%, 53%);--sg-table-header-background: #1a1a1a;--sg-table-header-color: #fff;--sg-table-cell-padding-x: .5rem;--sg-table-cell-padding-y: .6875rem;--sg-table-border-width: 1px;--sg-table-border-color: var(--gds-ref-pallet-base300);--sg-table-sort-icon-color: var(--gds-ref-pallet-base600);--gds-ref-pallet-base500: hsl(0, 0%, 68%);--sg-table-sort-icon-color-active: #fff;--gds-sys-color-surface: #fff;--gds-ref-pallet-base200: #e8e8e8;--gds-sys-color-base: #333;--gds-sys-shape-corner-small: .125rem;--gds-sys-color-blue-dark-2: #007ac7;--gds-sys-shape-corner-medium: .25rem;--sg-table-row-expand-font-weight: 500;--sg-table-row-expand-font-weight-light: 400;border-collapse:collapse;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);width:100%;border-bottom:none;--gds-comp-checkbox-container-height: 1rem;--gds-comp-checkbox-container-width: 1rem;--gds-comp-checkbox-container-color: var(--gds-sys-color-background-primary);--gds-comp-checkbox-container-color-disabled: var(--gds-sys-color-base-300);--gds-comp-checkbox-border-color: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-radius: var(--gds-sys-shape-corner-small);--gds-comp-checkbox-hover-border-color: var(--gds-sys-color-base-600);--gds-comp-checkbox-container-color-selected: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-color-selected: var(--gds-sys-color-text-inverted);--gds-comp-checkbox-border-color-focus: var(--gds-sys-color-dark-blue-2)}::ng-deep .gds-table thead tr th{background:#333;color:var(--sg-table-header-color);padding:.3rem var(--sg-table-cell-padding-x);text-align:left;font-weight:500}::ng-deep .gds-table thead tr th.icon-invert.sg-sortable .sg-table-sort:after{margin-left:0;margin-right:.3rem;order:-1}::ng-deep .gds-table thead tr th .sg-table-sort{color:inherit;width:100%;text-align:left;display:flex;align-items:center;border-radius:.125rem;--gds-sys-color-focus-outline: $_header-color}::ng-deep .gds-table thead tr th .sg-table-sort:focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table thead tr th .sg-table-sort:focus,::ng-deep .gds-table thead tr th .sg-table-sort:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table thead tr th[aria-sort] .sg-table-sort:after,::ng-deep .gds-table thead tr th.sg-sortable .sg-table-sort:after{content:\"\";background:var(--gds-sys-color-base-500);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:right;mask-position:right;width:12px;height:12px;margin-left:.3rem}::ng-deep .gds-table thead tr th[aria-sort=ascending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active);transform:rotate(180deg)}::ng-deep .gds-table thead tr th[aria-sort=descending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active)}::ng-deep .gds-table tbody tr td,::ng-deep .gds-table tbody tr th{border-top:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x);vertical-align:top}::ng-deep .gds-table tbody tr.collapsible~.sub-row{display:none}::ng-deep .gds-table tbody tr.collapsible.expanded~.sub-row.show{display:table-row}::ng-deep .gds-table tbody tr td.collapse-control,::ng-deep .gds-table tbody tr td.select-control{width:15px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn{min-height:unset;padding:0;background:transparent}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder{cursor:pointer;width:12px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg{width:12px;fill:#868686}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg[name=angle-right]{width:9px}@media (max-width: 36em){::ng-deep .gds-table.table-mobile{width:100%;table-layout:fixed;border-bottom:none}::ng-deep .gds-table.table-mobile thead{position:sticky;top:0;display:block;background:#333}}@media (max-width: 36em) and (hover: none) and (pointer: coarse){::ng-deep .gds-table.table-mobile thead{display:table-header-group}}@media (max-width: 36em){::ng-deep .gds-table.table-mobile thead tr{display:flex;overflow:auto}::ng-deep .gds-table.table-mobile thead tr::-webkit-scrollbar{display:none}::ng-deep .gds-table.table-mobile thead tr th{flex:auto;text-align:left!important;white-space:nowrap}::ng-deep .gds-table.table-mobile tbody tr{display:flex;flex-direction:column;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300)}::ng-deep .gds-table.table-mobile tbody tr td{display:flex;justify-content:space-between;align-items:center;border-top:none!important}::ng-deep .gds-table.table-mobile tbody tr td:before{content:attr(data-label);font-weight:700}}::ng-deep .gds-table .web-view{display:table-cell}::ng-deep .gds-table .mobile-view{display:none}::ng-deep .gds-table tr:hover td{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table .gds-table__numeric-col{text-align:right}::ng-deep .gds-table thead tr th.gds-table__numeric-col .sg-table-sort{justify-content:end}::ng-deep .gds-table th button{background-color:#0000;border:0;font-family:inherit;font-size:inherit;font-weight:inherit;padding:0;cursor:pointer}::ng-deep .gds-table tbody{border-bottom:var(--sg-table-border-width) solid var(--sg-table-border-color)}::ng-deep .gds-table td{cursor:pointer}::ng-deep .gds-table tfoot{border-top:1px solid;border-bottom:none;font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table tfoot ::ng-deep td{padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x)}::ng-deep .gds-table th.column__check{height:vanilla-px-to-rem(32px);width:vanilla-px-to-rem(40px)}::ng-deep .gds-table th.column__check div{min-height:100%}::ng-deep .gds-table th.column__check input:checked+label:after{top:.6rem;display:inline}::ng-deep .gds-table th.column__check label{display:inline;padding:0}::ng-deep .gds-table th.column__check label:before{top:.55rem}::ng-deep .gds-table td.column__check{width:vanilla-px-to-rem(40px)}::ng-deep .gds-table td.column__check div{min-height:unset}::ng-deep .gds-table td.column__check label{padding:0}::ng-deep .gds-table td.column__check label:before{margin:0}::ng-deep .gds-table tr.row__expand{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap{display:flex;flex-wrap:nowrap}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap.no-sub-items{padding-left:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field{width:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field svg{transition:transform .3s ease}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field[aria-expanded=true] svg{transform:rotate(-180deg)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text{padding-left:.2rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text .gds-item-field-extra-label{font-weight:var(--sg-table-row-expand-font-weight-light, 400)}::ng-deep .gds-table tr.row__expand td{font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table label.form-control input[type=checkbox]{cursor:pointer;height:0;opacity:0;position:absolute;width:0;z-index:-1}::ng-deep .gds-table label.form-control{align-items:flex-start}::ng-deep .gds-table label.form-control:has(input[type=checkbox]){padding:.6875rem 1rem .5625rem}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus,::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table label.form-control input[type=checkbox]~i{margin-right:.75rem;margin-top:.0625rem;flex-shrink:0;box-shadow:inset 0 0 0 1px var(--gds-sys-color-text-primary);position:relative;border-radius:var(--gds-sys-shape-corner-small);background-color:transparent;flex:0 0 auto;height:1rem;width:1rem}::ng-deep .gds-table label.form-control input[type=checkbox]:not(:checked):focus-visible~i{box-shadow:inset 0 0 0 1px var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control:hover input[type=checkbox]:not(.disabled,:disabled,:checked,:indeterminate)~i{background-color:var(--gds-sys-color-base-200)}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i:after{border-bottom:2px solid var(--gds-sys-color-background-primary);border-left:none;transform:scale(1) rotate(0);opacity:1}::ng-deep .gds-table label.form-control:has(input[type=checkbox].is-invalid){border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control:has(input[type=checkbox].is-invalid){border:none;margin:0}@supports (-moz-appearance: none){::ng-deep .gds-table label.form-control.is-invalid{border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control.is-invalid{border:none;margin:0}}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i:after,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i:after{border-color:var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span{color:var(--text-disabled-color)!important;cursor:not-allowed}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{content:\"\";opacity:0;position:absolute}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{border-bottom:3px solid var(--gds-sys-color-text-inverted);border-left:3px solid var(--gds-sys-color-text-inverted);height:.5rem;width:1rem;left:0;top:.1875rem;transform:scale(.601) rotate(-45deg);transform-origin:center}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i:after{opacity:1}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]){padding:.75rem 1rem;border:1px solid transparent;border-radius:var(--gds-sys-shape-corner-medium);align-items:center;cursor:pointer;display:flex;flex-direction:row-reverse;font:inherit;justify-content:flex-end;position:relative;user-select:none;-webkit-user-select:none;line-height:1.125rem;padding:0}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]):has(input:disabled){cursor:not-allowed}::ng-deep .gds-table #thead-checkbox input[type=checkbox]~i{box-shadow:inset 0 0 0 1px var(--gds-comp-checkbox-container-color);background-color:var(--gds-comp-checkbox-border-color)}::ng-deep .gds-table #thead-checkbox:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--sg-table-header-color)}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i{box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i:after{border-color:#ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i{background-color:var(--gds-comp-checkbox-border-color);box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i:after{border-color:#ababab}@media screen and (max-width: 600px){.gds-table thead{display:none}.gds-table .row__expand td:not(:first-child){display:none}.gds-table .row__expand td{display:table-cell}.gds-table .web-view{display:none}.gds-table .mobile-view{display:flex;align-items:center}.gds-table .mobile-view .mobile-view-field-wrap{display:grid;grid-template-columns:1fr 1fr;width:100%}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field{display:flex;flex-direction:column;padding-bottom:.3rem}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(odd){justify-self:start;align-items:start;text-align:start}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(2n){align-items:end;justify-self:end;text-align:end}.gds-table .mobile-view .nav-chevron-field{width:1.5rem;padding-left:.5rem}.gds-table .mobile-view .nav-chevron-field svg{transition:transform .3s ease}.gds-table .mobile-view .nav-chevron-field[aria-expanded=true] svg{transform:rotate(-90deg)}.gds-table .mobile-view .settings-field{width:1.5rem;padding:0 1rem}.gds-table .mobile-view .settings-field svg{transition:all .3s ease}.gds-table .mobile-view .settings-field:hover svg{fill:var(--gds-sys-color-blue-dark-2)}}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: TableDirective, selector: "[columnType]", inputs: ["columnType", "sortable", "sortOrder", "value", "thook"] }, { kind: "pipe", type: TrThookPipe, name: "trThook" }] }); }
6956
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TableComponent, selector: "nggv-table", inputs: { tableColumns: "tableColumns", tableData: "tableData", rowId: "rowId", hasRowSpan: "hasRowSpan", selectable: "selectable", hiddenCheckboxRowIds: "hiddenCheckboxRowIds", expandable: "expandable", expandedByDefault: "expandedByDefault", subItemsProp: "subItemsProp", allowLocalSort: "allowLocalSort", thook: "thook", trThookFn: "trThookFn", ariaLabelCheckboxTh: "ariaLabelCheckboxTh", ariaLabelCheckboxTr: "ariaLabelCheckboxTr", ariaLabelsOrderBy: "ariaLabelsOrderBy" }, outputs: { ngvRowClick: "ngvRowClick", ngvRowSelect: "ngvRowSelect", ngvOrderBy: "ngvOrderBy" }, queries: [{ propertyName: "appendedRowsTemplate", first: true, predicate: TableAppendableRowsTemplateDirective, descendants: true }, { propertyName: "customFooterTemplate", first: true, predicate: TableFooterTemplateDirective, descendants: true }, { propertyName: "customTemplates", predicate: TableTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-template #sortableThTemplate let-column>\n <button class=\"sg-table-sort\" *transloco=\"let t\">\n <ng-template #thButtonTemplate>\n {{ t(column.label ?? '') }}\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else thButtonTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n </button>\n</ng-template>\n\n<ng-template #notSortableThTemplate let-column>\n <ng-template #defaultThTemplate>\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else defaultThTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n</ng-template>\n<table class=\"gds-table\" *transloco=\"let t\">\n <!-- Table header -->\n <thead>\n <tr>\n <!-- Checkbox column for header -->\n <th *ngIf=\"selectable\" class=\"column__check\">\n <div class=\"gds-field-checkbox-wrap\">\n <label\n [attr.for]=\"'cb_header__' + initId\"\n class=\"form-control\"\n id=\"thead-checkbox\"\n >\n <input\n type=\"checkbox\"\n [formControl]=\"groupSelector\"\n [attr.aria-label]=\"ariaLabelCheckboxTh\"\n [attr.id]=\"'cb_header__' + initId\"\n [attr.data-thook]=\"thook\"\n />\n <i></i>\n </label>\n </div>\n </th>\n\n <!-- Other columns -->\n <th\n *ngFor=\"let column of tableColumns\"\n [columnType]=\"column.valueType\"\n [sortable]=\"column.sortable\"\n [sortOrder]=\"column.order\"\n [thook]=\"'column-header-' + !!column.property\"\n (click)=\"toggleSortOrder(column)\"\n (keydown.space)=\"toggleSortOrderWithSpace($event, column)\"\n [attr.aria-label]=\"getAriaLabel(column)\"\n [attr.aria-sort]=\"column.order + 'ending'\"\n >\n <ng-container *ngIf=\"column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n sortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n notSortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n </th>\n </tr>\n </thead>\n\n <!-- Table body -->\n <tbody [formGroup]=\"rowSelectors\">\n <ng-container *ngFor=\"let item of tableData; let i = index\">\n <tr\n [class.row__expand]=\"expandable\"\n [attr.data-thook]=\"item | trThook: i : trThookFn\"\n [attr.data-hasrowspan]=\"hasRowSpan(item)\"\n >\n <!-- Checkbox column for row -->\n <td *ngIf=\"selectable\" class=\"column__check\">\n <div\n *ngIf=\"!hiddenCheckboxRowIds.includes(item[rowId])\"\n class=\"gds-field-checkbox-wrap\"\n >\n <label\n [attr.for]=\"'cb_row__' + initId + '_' + i\"\n class=\"form-control\"\n >\n <input\n *ngIf=\"rowSelectors.get(item[rowId])\"\n type=\"checkbox\"\n [formControlName]=\"item[rowId]\"\n [attr.aria-label]=\"ariaLabelCheckboxTr\"\n [attr.id]=\"'cb_row__' + initId + '_' + i\"\n [attr.data-thook]=\"'row-select-' + i\"\n />\n <i></i>\n </label>\n </div>\n </td>\n\n <!-- Other columns -->\n <td\n *ngFor=\"let column of tableColumns; let i = index\"\n [columnType]=\"column.valueType\"\n [value]=\"item[column.property]\"\n (click)=\"propagateItemClick(item, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"expandable && i === 0; else nonExpandableTemplate\">\n <div\n class=\"gds-item-field-wrap\"\n [ngClass]=\"{ 'no-sub-items': item.subItems.length === 0 }\"\n >\n <span\n *ngIf=\"item.subItems.length > 0\"\n role=\"button\"\n tabindex=\"0\"\n class=\"chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n <span class=\"gds-item-field-text\">\n {{ item[column.property] }} ({{ item.subItems.length }})\n <div *ngIf=\"column.columnLabel\" class=\"gds-item-field-extra-label\">\n {{ item[column.columnLabel] }}\n </div>\n </span>\n </div>\n </ng-container>\n\n <ng-template #nonExpandableTemplate>\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: item }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ item[column.property] }}\n </ng-template>\n </ng-template>\n </td>\n </tr>\n\n <!-- Expanded Sub Items -->\n <ng-container *ngIf=\"expandable && rowSelectors.get(item[rowId])?.value\">\n <tr *ngFor=\"let subItem of item[subItemsProp]\">\n <td\n *ngFor=\"let column of tableColumns\"\n class=\"web-view\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n (click)=\"propagateItemClick(subItem, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </td>\n\n <td\n class=\"mobile-view\"\n [attr.colspan]=\"tableColumns.length\"\n (click)=\"propagateItemClick(subItem)\"\n >\n <dl class=\"mobile-view-field-wrap\">\n <ng-container *ngFor=\"let column of tableColumns\">\n <div\n *ngIf=\"!column.hidePropertyOnMobile\"\n class=\"mobile-view-field\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n >\n <dt *ngIf=\"!column.hideLabelOnMobile\">\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </dt>\n <dd [ngStyle]=\"column.boldTextOnMobile ? { 'font-weight': '500' } : {'font-weight': '400'}\">\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\"></ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </dd>\n <ng-content></ng-content>\n </div>\n </ng-container>\n </dl>\n <span\n role=\"button\"\n tabindex=\"0\"\n class=\"nav-chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n </td>\n </tr>\n </ng-container>\n\n <!-- Custom appended rows -->\n <ng-container *ngIf=\"appendedRowsTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container\n *ngTemplateOutlet=\"trTemplate || null; context: { $implicit: item }\"\n >\n </ng-container>\n </ng-container>\n </ng-container>\n </tbody>\n\n <!-- Table footer -->\n <tfoot *ngIf=\"customFooterTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container *ngTemplateOutlet=\"trTemplate || null\"> </ng-container>\n </tfoot>\n</table>\n", styles: ["::ng-deep .gds-table{--gds-ref-pallet-base100: #f8f8f8;--gds-ref-pallet-base600: hsl(0, 0%, 53%);--sg-table-header-background: #1a1a1a;--sg-table-header-color: #fff;--sg-table-cell-padding-x: .5rem;--sg-table-cell-padding-y: .6875rem;--sg-table-border-width: 1px;--sg-table-border-color: var(--gds-ref-pallet-base300);--sg-table-sort-icon-color: var(--gds-ref-pallet-base600);--gds-ref-pallet-base500: hsl(0, 0%, 68%);--sg-table-sort-icon-color-active: #fff;--gds-sys-color-surface: #fff;--gds-ref-pallet-base200: #e8e8e8;--gds-sys-color-base: #333;--gds-sys-shape-corner-small: .125rem;--gds-sys-color-blue-dark-2: #007ac7;--gds-sys-shape-corner-medium: .25rem;--sg-table-row-expand-font-weight: 500;--sg-table-row-expand-font-weight-light: 400;border-collapse:collapse;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);width:100%;border-bottom:none;--gds-comp-checkbox-container-height: 1rem;--gds-comp-checkbox-container-width: 1rem;--gds-comp-checkbox-container-color: var(--gds-sys-color-background-primary);--gds-comp-checkbox-container-color-disabled: var(--gds-sys-color-base-300);--gds-comp-checkbox-border-color: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-radius: var(--gds-sys-shape-corner-small);--gds-comp-checkbox-hover-border-color: var(--gds-sys-color-base-600);--gds-comp-checkbox-container-color-selected: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-color-selected: var(--gds-sys-color-text-inverted);--gds-comp-checkbox-border-color-focus: var(--gds-sys-color-dark-blue-2)}::ng-deep .gds-table thead tr th{background:#333;color:var(--sg-table-header-color);padding:.3rem var(--sg-table-cell-padding-x);text-align:left;font-weight:500}::ng-deep .gds-table thead tr th.icon-invert.sg-sortable .sg-table-sort:after{margin-left:0;margin-right:.3rem;order:-1}::ng-deep .gds-table thead tr th .sg-table-sort{color:inherit;width:100%;text-align:left;display:flex;align-items:center;border-radius:.125rem;--gds-sys-color-focus-outline: $_header-color}::ng-deep .gds-table thead tr th .sg-table-sort:focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table thead tr th .sg-table-sort:focus,::ng-deep .gds-table thead tr th .sg-table-sort:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table thead tr th[aria-sort] .sg-table-sort:after,::ng-deep .gds-table thead tr th.sg-sortable .sg-table-sort:after{content:\"\";background:var(--gds-sys-color-base-500);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:right;mask-position:right;width:12px;height:12px;margin-left:.3rem}::ng-deep .gds-table thead tr th[aria-sort=ascending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active);transform:rotate(180deg)}::ng-deep .gds-table thead tr th[aria-sort=descending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active)}::ng-deep .gds-table tbody tr td,::ng-deep .gds-table tbody tr th{border-top:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x);vertical-align:top}::ng-deep .gds-table tbody tr.collapsible~.sub-row{display:none}::ng-deep .gds-table tbody tr.collapsible.expanded~.sub-row.show{display:table-row}::ng-deep .gds-table tbody tr td.collapse-control,::ng-deep .gds-table tbody tr td.select-control{width:15px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn{min-height:unset;padding:0;background:transparent}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder{cursor:pointer;width:12px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg{width:12px;fill:#868686}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg[name=angle-right]{width:9px}@media (max-width: 36em){::ng-deep .gds-table.table-mobile{width:100%;table-layout:fixed;border-bottom:none}::ng-deep .gds-table.table-mobile thead{position:sticky;top:0;display:block;background:#333}}@media (max-width: 36em) and (hover: none) and (pointer: coarse){::ng-deep .gds-table.table-mobile thead{display:table-header-group}}@media (max-width: 36em){::ng-deep .gds-table.table-mobile thead tr{display:flex;overflow:auto}::ng-deep .gds-table.table-mobile thead tr::-webkit-scrollbar{display:none}::ng-deep .gds-table.table-mobile thead tr th{flex:auto;text-align:left!important;white-space:nowrap}::ng-deep .gds-table.table-mobile tbody tr{display:flex;flex-direction:column;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300)}::ng-deep .gds-table.table-mobile tbody tr td{display:flex;justify-content:space-between;align-items:center;border-top:none!important}::ng-deep .gds-table.table-mobile tbody tr td:before{content:attr(data-label);font-weight:700}}::ng-deep .gds-table .web-view{display:table-cell}::ng-deep .gds-table .mobile-view{display:none}::ng-deep .gds-table tr:hover td{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table .gds-table__numeric-col{text-align:right}::ng-deep .gds-table thead tr th.gds-table__numeric-col .sg-table-sort{justify-content:end}::ng-deep .gds-table th button{background-color:#0000;border:0;font-family:inherit;font-size:inherit;font-weight:inherit;padding:0;cursor:pointer}::ng-deep .gds-table tbody{border-bottom:var(--sg-table-border-width) solid var(--sg-table-border-color)}::ng-deep .gds-table td{cursor:pointer}::ng-deep .gds-table tfoot{border-top:1px solid;border-bottom:none;font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table tfoot ::ng-deep td{padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x)}::ng-deep .gds-table th.column__check{height:vanilla-px-to-rem(32px);width:vanilla-px-to-rem(40px)}::ng-deep .gds-table th.column__check div{min-height:100%}::ng-deep .gds-table th.column__check input:checked+label:after{top:.6rem;display:inline}::ng-deep .gds-table th.column__check label{display:inline;padding:0}::ng-deep .gds-table th.column__check label:before{top:.55rem}::ng-deep .gds-table td.column__check{width:vanilla-px-to-rem(40px)}::ng-deep .gds-table td.column__check div{min-height:unset}::ng-deep .gds-table td.column__check label{padding:0}::ng-deep .gds-table td.column__check label:before{margin:0}::ng-deep .gds-table tr.row__expand{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap{display:flex;flex-wrap:nowrap}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap.no-sub-items{padding-left:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field{width:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field svg{transition:transform .3s ease}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field[aria-expanded=true] svg{transform:rotate(-180deg)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text{padding-left:.2rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text .gds-item-field-extra-label{font-weight:var(--sg-table-row-expand-font-weight-light, 400)}::ng-deep .gds-table tr.row__expand td{font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table label.form-control input[type=checkbox]{cursor:pointer;height:0;opacity:0;position:absolute;width:0;z-index:-1}::ng-deep .gds-table label.form-control{align-items:flex-start}::ng-deep .gds-table label.form-control:has(input[type=checkbox]){padding:.6875rem 1rem .5625rem}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus,::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table label.form-control input[type=checkbox]~i{margin-right:.75rem;margin-top:.0625rem;flex-shrink:0;box-shadow:inset 0 0 0 1px var(--gds-sys-color-text-primary);position:relative;border-radius:var(--gds-sys-shape-corner-small);background-color:transparent;flex:0 0 auto;height:1rem;width:1rem}::ng-deep .gds-table label.form-control input[type=checkbox]:not(:checked):focus-visible~i{box-shadow:inset 0 0 0 1px var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control:hover input[type=checkbox]:not(.disabled,:disabled,:checked,:indeterminate)~i{background-color:var(--gds-sys-color-base-200)}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i:after{border-bottom:2px solid var(--gds-sys-color-background-primary);border-left:none;transform:scale(1) rotate(0);opacity:1}::ng-deep .gds-table label.form-control:has(input[type=checkbox].is-invalid){border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control:has(input[type=checkbox].is-invalid){border:none;margin:0}@supports (-moz-appearance: none){::ng-deep .gds-table label.form-control.is-invalid{border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control.is-invalid{border:none;margin:0}}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i:after,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i:after{border-color:var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span{color:var(--text-disabled-color)!important;cursor:not-allowed}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{content:\"\";opacity:0;position:absolute}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{border-bottom:3px solid var(--gds-sys-color-text-inverted);border-left:3px solid var(--gds-sys-color-text-inverted);height:.5rem;width:1rem;left:0;top:.1875rem;transform:scale(.601) rotate(-45deg);transform-origin:center}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i:after{opacity:1}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]){padding:.75rem 1rem;border:1px solid transparent;border-radius:var(--gds-sys-shape-corner-medium);align-items:center;cursor:pointer;display:flex;flex-direction:row-reverse;font:inherit;justify-content:flex-end;position:relative;user-select:none;-webkit-user-select:none;line-height:1.125rem;padding:0}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]):has(input:disabled){cursor:not-allowed}::ng-deep .gds-table #thead-checkbox input[type=checkbox]~i{box-shadow:inset 0 0 0 1px var(--gds-comp-checkbox-container-color);background-color:var(--gds-comp-checkbox-border-color)}::ng-deep .gds-table #thead-checkbox:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--sg-table-header-color)}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i{box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i:after{border-color:#ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i{background-color:var(--gds-comp-checkbox-border-color);box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i:after{border-color:#ababab}@media screen and (max-width: 600px){.gds-table thead{display:none}.gds-table .row__expand td:not(:first-child){display:none}.gds-table .row__expand td{display:table-cell}.gds-table .web-view{display:none}.gds-table .mobile-view{display:flex;align-items:center}.gds-table .mobile-view .mobile-view-field-wrap{display:grid;grid-template-columns:1fr 1fr;width:100%}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field{display:flex;flex-direction:column;padding-bottom:.3rem}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(odd){justify-self:start;align-items:start;text-align:start}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(2n){align-items:end;justify-self:end;text-align:end}.gds-table .mobile-view .nav-chevron-field{width:1.5rem;padding-left:.5rem}.gds-table .mobile-view .nav-chevron-field svg{transition:transform .3s ease}.gds-table .mobile-view .nav-chevron-field[aria-expanded=true] svg{transform:rotate(-90deg)}.gds-table .mobile-view .settings-field{width:1.5rem;padding:0 1rem}.gds-table .mobile-view .settings-field svg{transition:all .3s ease}.gds-table .mobile-view .settings-field:hover svg{fill:var(--gds-sys-color-blue-dark-2)}}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: TableDirective, selector: "[columnType]", inputs: ["columnType", "sortable", "sortOrder", "value", "thook"] }, { kind: "pipe", type: TrThookPipe, name: "trThook" }] }); }
6945
6957
  }
6946
6958
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TableComponent, decorators: [{
6947
6959
  type: Component,
6948
- args: [{ selector: 'nggv-table', template: "<ng-template #sortableThTemplate let-column>\n <button class=\"sg-table-sort\" *transloco=\"let t\">\n <ng-template #thButtonTemplate>\n {{ t(column.label ?? '') }}\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else thButtonTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n </button>\n</ng-template>\n\n<ng-template #notSortableThTemplate let-column>\n <ng-template #defaultThTemplate>\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else defaultThTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n</ng-template>\n<table class=\"gds-table\" *transloco=\"let t\">\n <!-- Table header -->\n <thead>\n <tr>\n <!-- Checkbox column for header -->\n <th *ngIf=\"selectable\" class=\"column__check\">\n <div class=\"gds-field-checkbox-wrap\">\n <label\n [attr.for]=\"'cb_header__' + initId\"\n class=\"form-control\"\n id=\"thead-checkbox\"\n >\n <input\n type=\"checkbox\"\n [formControl]=\"groupSelector\"\n [attr.aria-label]=\"ariaLabelCheckboxTh\"\n [attr.id]=\"'cb_header__' + initId\"\n [attr.data-thook]=\"thook\"\n />\n <i></i>\n </label>\n </div>\n </th>\n\n <!-- Other columns -->\n <th\n *ngFor=\"let column of tableColumns\"\n [columnType]=\"column.valueType\"\n [sortable]=\"column.sortable\"\n [sortOrder]=\"column.order\"\n [thook]=\"'column-header-' + !!column.property\"\n (click)=\"toggleSortOrder(column)\"\n (keydown.space)=\"toggleSortOrderWithSpace($event, column)\"\n [attr.aria-label]=\"getAriaLabel(column)\"\n [attr.aria-sort]=\"column.order + 'ending'\"\n >\n <ng-container *ngIf=\"column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n sortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n notSortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n </th>\n </tr>\n </thead>\n\n <!-- Table body -->\n <tbody [formGroup]=\"rowSelectors\">\n <ng-container *ngFor=\"let item of tableData; let i = index\">\n <tr\n [class.row__expand]=\"expandable\"\n [attr.data-thook]=\"item | trThook: i : trThookFn\"\n [attr.data-hasrowspan]=\"hasRowSpan(item)\"\n >\n <!-- Checkbox column for row -->\n <td\n *ngIf=\"selectable && !hiddenCheckboxRowIds.includes(item[rowId])\"\n class=\"column__check\"\n >\n <div class=\"gds-field-checkbox-wrap\">\n <label\n [attr.for]=\"'cb_row__' + initId + '_' + i\"\n class=\"form-control\"\n >\n <input\n *ngIf=\"rowSelectors.get(item[rowId])\"\n type=\"checkbox\"\n [formControlName]=\"item[rowId]\"\n [attr.aria-label]=\"ariaLabelCheckboxTr\"\n [attr.id]=\"'cb_row__' + initId + '_' + i\"\n [attr.data-thook]=\"'row-select-' + i\"\n />\n <i></i>\n </label>\n </div>\n </td>\n\n <!-- Other columns -->\n <td\n *ngFor=\"let column of tableColumns; let i = index\"\n [columnType]=\"column.valueType\"\n [value]=\"item[column.property]\"\n (click)=\"propagateItemClick(item, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"expandable && i === 0; else nonExpandableTemplate\">\n <div\n class=\"gds-item-field-wrap\"\n [ngClass]=\"{ 'no-sub-items': item.subItems.length === 0 }\"\n >\n <span\n *ngIf=\"item.subItems.length > 0\"\n role=\"button\"\n tabindex=\"0\"\n class=\"chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n <span class=\"gds-item-field-text\">\n {{ item[column.property] }} ({{ item.subItems.length }})\n <div *ngIf=\"column.columnLabel\" class=\"gds-item-field-extra-label\">\n {{ item[column.columnLabel] }}\n </div>\n </span>\n </div>\n </ng-container>\n\n <ng-template #nonExpandableTemplate>\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: item }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ item[column.property] }}\n </ng-template>\n </ng-template>\n </td>\n </tr>\n\n <!-- Expanded Sub Items -->\n <ng-container *ngIf=\"expandable && rowSelectors.get(item[rowId])?.value\">\n <tr *ngFor=\"let subItem of item[subItemsProp]\">\n <td\n *ngFor=\"let column of tableColumns\"\n class=\"web-view\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n (click)=\"propagateItemClick(subItem, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </td>\n\n <td\n class=\"mobile-view\"\n [attr.colspan]=\"tableColumns.length\"\n (click)=\"propagateItemClick(subItem)\"\n >\n <dl class=\"mobile-view-field-wrap\">\n <ng-container *ngFor=\"let column of tableColumns\">\n <div\n *ngIf=\"!column.hidePropertyOnMobile\"\n class=\"mobile-view-field\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n >\n <dt *ngIf=\"!column.hideLabelOnMobile\">\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </dt>\n <dd [ngStyle]=\"column.boldTextOnMobile ? { 'font-weight': '500' } : {'font-weight': '400'}\">\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\"></ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </dd>\n <ng-content></ng-content>\n </div>\n </ng-container>\n </dl>\n <span\n role=\"button\"\n tabindex=\"0\"\n class=\"nav-chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n </td>\n </tr>\n </ng-container>\n\n <!-- Custom appended rows -->\n <ng-container *ngIf=\"appendedRowsTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container\n *ngTemplateOutlet=\"trTemplate || null; context: { $implicit: item }\"\n >\n </ng-container>\n </ng-container>\n </ng-container>\n </tbody>\n\n <!-- Table footer -->\n <tfoot *ngIf=\"customFooterTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container *ngTemplateOutlet=\"trTemplate || null\"> </ng-container>\n </tfoot>\n</table>\n", styles: ["::ng-deep .gds-table{--gds-ref-pallet-base100: #f8f8f8;--gds-ref-pallet-base600: hsl(0, 0%, 53%);--sg-table-header-background: #1a1a1a;--sg-table-header-color: #fff;--sg-table-cell-padding-x: .5rem;--sg-table-cell-padding-y: .6875rem;--sg-table-border-width: 1px;--sg-table-border-color: var(--gds-ref-pallet-base300);--sg-table-sort-icon-color: var(--gds-ref-pallet-base600);--gds-ref-pallet-base500: hsl(0, 0%, 68%);--sg-table-sort-icon-color-active: #fff;--gds-sys-color-surface: #fff;--gds-ref-pallet-base200: #e8e8e8;--gds-sys-color-base: #333;--gds-sys-shape-corner-small: .125rem;--gds-sys-color-blue-dark-2: #007ac7;--gds-sys-shape-corner-medium: .25rem;--sg-table-row-expand-font-weight: 500;--sg-table-row-expand-font-weight-light: 400;border-collapse:collapse;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);width:100%;border-bottom:none;--gds-comp-checkbox-container-height: 1rem;--gds-comp-checkbox-container-width: 1rem;--gds-comp-checkbox-container-color: var(--gds-sys-color-background-primary);--gds-comp-checkbox-container-color-disabled: var(--gds-sys-color-base-300);--gds-comp-checkbox-border-color: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-radius: var(--gds-sys-shape-corner-small);--gds-comp-checkbox-hover-border-color: var(--gds-sys-color-base-600);--gds-comp-checkbox-container-color-selected: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-color-selected: var(--gds-sys-color-text-inverted);--gds-comp-checkbox-border-color-focus: var(--gds-sys-color-dark-blue-2)}::ng-deep .gds-table thead tr th{background:#333;color:var(--sg-table-header-color);padding:.3rem var(--sg-table-cell-padding-x);text-align:left;font-weight:500}::ng-deep .gds-table thead tr th.icon-invert.sg-sortable .sg-table-sort:after{margin-left:0;margin-right:.3rem;order:-1}::ng-deep .gds-table thead tr th .sg-table-sort{color:inherit;width:100%;text-align:left;display:flex;align-items:center;border-radius:.125rem;--gds-sys-color-focus-outline: $_header-color}::ng-deep .gds-table thead tr th .sg-table-sort:focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table thead tr th .sg-table-sort:focus,::ng-deep .gds-table thead tr th .sg-table-sort:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table thead tr th[aria-sort] .sg-table-sort:after,::ng-deep .gds-table thead tr th.sg-sortable .sg-table-sort:after{content:\"\";background:var(--gds-sys-color-base-500);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:right;mask-position:right;width:12px;height:12px;margin-left:.3rem}::ng-deep .gds-table thead tr th[aria-sort=ascending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active);transform:rotate(180deg)}::ng-deep .gds-table thead tr th[aria-sort=descending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active)}::ng-deep .gds-table tbody tr td,::ng-deep .gds-table tbody tr th{border-top:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x);vertical-align:top}::ng-deep .gds-table tbody tr.collapsible~.sub-row{display:none}::ng-deep .gds-table tbody tr.collapsible.expanded~.sub-row.show{display:table-row}::ng-deep .gds-table tbody tr td.collapse-control,::ng-deep .gds-table tbody tr td.select-control{width:15px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn{min-height:unset;padding:0;background:transparent}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder{cursor:pointer;width:12px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg{width:12px;fill:#868686}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg[name=angle-right]{width:9px}@media (max-width: 36em){::ng-deep .gds-table.table-mobile{width:100%;table-layout:fixed;border-bottom:none}::ng-deep .gds-table.table-mobile thead{position:sticky;top:0;display:block;background:#333}}@media (max-width: 36em) and (hover: none) and (pointer: coarse){::ng-deep .gds-table.table-mobile thead{display:table-header-group}}@media (max-width: 36em){::ng-deep .gds-table.table-mobile thead tr{display:flex;overflow:auto}::ng-deep .gds-table.table-mobile thead tr::-webkit-scrollbar{display:none}::ng-deep .gds-table.table-mobile thead tr th{flex:auto;text-align:left!important;white-space:nowrap}::ng-deep .gds-table.table-mobile tbody tr{display:flex;flex-direction:column;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300)}::ng-deep .gds-table.table-mobile tbody tr td{display:flex;justify-content:space-between;align-items:center;border-top:none!important}::ng-deep .gds-table.table-mobile tbody tr td:before{content:attr(data-label);font-weight:700}}::ng-deep .gds-table .web-view{display:table-cell}::ng-deep .gds-table .mobile-view{display:none}::ng-deep .gds-table tr:hover td{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table .gds-table__numeric-col{text-align:right}::ng-deep .gds-table thead tr th.gds-table__numeric-col .sg-table-sort{justify-content:end}::ng-deep .gds-table th button{background-color:#0000;border:0;font-family:inherit;font-size:inherit;font-weight:inherit;padding:0;cursor:pointer}::ng-deep .gds-table tbody{border-bottom:var(--sg-table-border-width) solid var(--sg-table-border-color)}::ng-deep .gds-table td{cursor:pointer}::ng-deep .gds-table tfoot{border-top:1px solid;border-bottom:none;font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table tfoot ::ng-deep td{padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x)}::ng-deep .gds-table th.column__check{height:vanilla-px-to-rem(32px);width:vanilla-px-to-rem(40px)}::ng-deep .gds-table th.column__check div{min-height:100%}::ng-deep .gds-table th.column__check input:checked+label:after{top:.6rem;display:inline}::ng-deep .gds-table th.column__check label{display:inline;padding:0}::ng-deep .gds-table th.column__check label:before{top:.55rem}::ng-deep .gds-table td.column__check{width:vanilla-px-to-rem(40px)}::ng-deep .gds-table td.column__check div{min-height:unset}::ng-deep .gds-table td.column__check label{padding:0}::ng-deep .gds-table td.column__check label:before{margin:0}::ng-deep .gds-table tr.row__expand{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap{display:flex;flex-wrap:nowrap}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap.no-sub-items{padding-left:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field{width:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field svg{transition:transform .3s ease}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field[aria-expanded=true] svg{transform:rotate(-180deg)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text{padding-left:.2rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text .gds-item-field-extra-label{font-weight:var(--sg-table-row-expand-font-weight-light, 400)}::ng-deep .gds-table tr.row__expand td{font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table label.form-control input[type=checkbox]{cursor:pointer;height:0;opacity:0;position:absolute;width:0;z-index:-1}::ng-deep .gds-table label.form-control{align-items:flex-start}::ng-deep .gds-table label.form-control:has(input[type=checkbox]){padding:.6875rem 1rem .5625rem}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus,::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table label.form-control input[type=checkbox]~i{margin-right:.75rem;margin-top:.0625rem;flex-shrink:0;box-shadow:inset 0 0 0 1px var(--gds-sys-color-text-primary);position:relative;border-radius:var(--gds-sys-shape-corner-small);background-color:transparent;flex:0 0 auto;height:1rem;width:1rem}::ng-deep .gds-table label.form-control input[type=checkbox]:not(:checked):focus-visible~i{box-shadow:inset 0 0 0 1px var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control:hover input[type=checkbox]:not(.disabled,:disabled,:checked,:indeterminate)~i{background-color:var(--gds-sys-color-base-200)}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i:after{border-bottom:2px solid var(--gds-sys-color-background-primary);border-left:none;transform:scale(1) rotate(0);opacity:1}::ng-deep .gds-table label.form-control:has(input[type=checkbox].is-invalid){border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control:has(input[type=checkbox].is-invalid){border:none;margin:0}@supports (-moz-appearance: none){::ng-deep .gds-table label.form-control.is-invalid{border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control.is-invalid{border:none;margin:0}}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i:after,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i:after{border-color:var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span{color:var(--text-disabled-color)!important;cursor:not-allowed}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{content:\"\";opacity:0;position:absolute}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{border-bottom:3px solid var(--gds-sys-color-text-inverted);border-left:3px solid var(--gds-sys-color-text-inverted);height:.5rem;width:1rem;left:0;top:.1875rem;transform:scale(.601) rotate(-45deg);transform-origin:center}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i:after{opacity:1}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]){padding:.75rem 1rem;border:1px solid transparent;border-radius:var(--gds-sys-shape-corner-medium);align-items:center;cursor:pointer;display:flex;flex-direction:row-reverse;font:inherit;justify-content:flex-end;position:relative;user-select:none;-webkit-user-select:none;line-height:1.125rem;padding:0}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]):has(input:disabled){cursor:not-allowed}::ng-deep .gds-table #thead-checkbox input[type=checkbox]~i{box-shadow:inset 0 0 0 1px var(--gds-comp-checkbox-container-color);background-color:var(--gds-comp-checkbox-border-color)}::ng-deep .gds-table #thead-checkbox:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--sg-table-header-color)}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i{box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i:after{border-color:#ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i{background-color:var(--gds-comp-checkbox-border-color);box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i:after{border-color:#ababab}@media screen and (max-width: 600px){.gds-table thead{display:none}.gds-table .row__expand td:not(:first-child){display:none}.gds-table .row__expand td{display:table-cell}.gds-table .web-view{display:none}.gds-table .mobile-view{display:flex;align-items:center}.gds-table .mobile-view .mobile-view-field-wrap{display:grid;grid-template-columns:1fr 1fr;width:100%}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field{display:flex;flex-direction:column;padding-bottom:.3rem}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(odd){justify-self:start;align-items:start;text-align:start}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(2n){align-items:end;justify-self:end;text-align:end}.gds-table .mobile-view .nav-chevron-field{width:1.5rem;padding-left:.5rem}.gds-table .mobile-view .nav-chevron-field svg{transition:transform .3s ease}.gds-table .mobile-view .nav-chevron-field[aria-expanded=true] svg{transform:rotate(-90deg)}.gds-table .mobile-view .settings-field{width:1.5rem;padding:0 1rem}.gds-table .mobile-view .settings-field svg{transition:all .3s ease}.gds-table .mobile-view .settings-field:hover svg{fill:var(--gds-sys-color-blue-dark-2)}}\n"] }]
6960
+ args: [{ selector: 'nggv-table', template: "<ng-template #sortableThTemplate let-column>\n <button class=\"sg-table-sort\" *transloco=\"let t\">\n <ng-template #thButtonTemplate>\n {{ t(column.label ?? '') }}\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else thButtonTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n </button>\n</ng-template>\n\n<ng-template #notSortableThTemplate let-column>\n <ng-template #defaultThTemplate>\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </ng-template>\n <ng-container\n *ngIf=\"\n customHeaderTemplates.get(column.property) as thTemplate;\n else defaultThTemplate\n \"\n >\n <ng-template\n *ngTemplateOutlet=\"thTemplate || null; context: { $implicit: column }\"\n >\n </ng-template>\n </ng-container>\n</ng-template>\n<table class=\"gds-table\" *transloco=\"let t\">\n <!-- Table header -->\n <thead>\n <tr>\n <!-- Checkbox column for header -->\n <th *ngIf=\"selectable\" class=\"column__check\">\n <div class=\"gds-field-checkbox-wrap\">\n <label\n [attr.for]=\"'cb_header__' + initId\"\n class=\"form-control\"\n id=\"thead-checkbox\"\n >\n <input\n type=\"checkbox\"\n [formControl]=\"groupSelector\"\n [attr.aria-label]=\"ariaLabelCheckboxTh\"\n [attr.id]=\"'cb_header__' + initId\"\n [attr.data-thook]=\"thook\"\n />\n <i></i>\n </label>\n </div>\n </th>\n\n <!-- Other columns -->\n <th\n *ngFor=\"let column of tableColumns\"\n [columnType]=\"column.valueType\"\n [sortable]=\"column.sortable\"\n [sortOrder]=\"column.order\"\n [thook]=\"'column-header-' + !!column.property\"\n (click)=\"toggleSortOrder(column)\"\n (keydown.space)=\"toggleSortOrderWithSpace($event, column)\"\n [attr.aria-label]=\"getAriaLabel(column)\"\n [attr.aria-sort]=\"column.order + 'ending'\"\n >\n <ng-container *ngIf=\"column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n sortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!column.sortable\">\n <ng-container\n *ngTemplateOutlet=\"\n notSortableThTemplate;\n context: { $implicit: column, column: column }\n \"\n >\n </ng-container>\n </ng-container>\n </th>\n </tr>\n </thead>\n\n <!-- Table body -->\n <tbody [formGroup]=\"rowSelectors\">\n <ng-container *ngFor=\"let item of tableData; let i = index\">\n <tr\n [class.row__expand]=\"expandable\"\n [attr.data-thook]=\"item | trThook: i : trThookFn\"\n [attr.data-hasrowspan]=\"hasRowSpan(item)\"\n >\n <!-- Checkbox column for row -->\n <td *ngIf=\"selectable\" class=\"column__check\">\n <div\n *ngIf=\"!hiddenCheckboxRowIds.includes(item[rowId])\"\n class=\"gds-field-checkbox-wrap\"\n >\n <label\n [attr.for]=\"'cb_row__' + initId + '_' + i\"\n class=\"form-control\"\n >\n <input\n *ngIf=\"rowSelectors.get(item[rowId])\"\n type=\"checkbox\"\n [formControlName]=\"item[rowId]\"\n [attr.aria-label]=\"ariaLabelCheckboxTr\"\n [attr.id]=\"'cb_row__' + initId + '_' + i\"\n [attr.data-thook]=\"'row-select-' + i\"\n />\n <i></i>\n </label>\n </div>\n </td>\n\n <!-- Other columns -->\n <td\n *ngFor=\"let column of tableColumns; let i = index\"\n [columnType]=\"column.valueType\"\n [value]=\"item[column.property]\"\n (click)=\"propagateItemClick(item, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"expandable && i === 0; else nonExpandableTemplate\">\n <div\n class=\"gds-item-field-wrap\"\n [ngClass]=\"{ 'no-sub-items': item.subItems.length === 0 }\"\n >\n <span\n *ngIf=\"item.subItems.length > 0\"\n role=\"button\"\n tabindex=\"0\"\n class=\"chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n <span class=\"gds-item-field-text\">\n {{ item[column.property] }} ({{ item.subItems.length }})\n <div *ngIf=\"column.columnLabel\" class=\"gds-item-field-extra-label\">\n {{ item[column.columnLabel] }}\n </div>\n </span>\n </div>\n </ng-container>\n\n <ng-template #nonExpandableTemplate>\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: item }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ item[column.property] }}\n </ng-template>\n </ng-template>\n </td>\n </tr>\n\n <!-- Expanded Sub Items -->\n <ng-container *ngIf=\"expandable && rowSelectors.get(item[rowId])?.value\">\n <tr *ngFor=\"let subItem of item[subItemsProp]\">\n <td\n *ngFor=\"let column of tableColumns\"\n class=\"web-view\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n (click)=\"propagateItemClick(subItem, column.preventDefaultClickEvent)\"\n >\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\">\n </ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </td>\n\n <td\n class=\"mobile-view\"\n [attr.colspan]=\"tableColumns.length\"\n (click)=\"propagateItemClick(subItem)\"\n >\n <dl class=\"mobile-view-field-wrap\">\n <ng-container *ngFor=\"let column of tableColumns\">\n <div\n *ngIf=\"!column.hidePropertyOnMobile\"\n class=\"mobile-view-field\"\n [columnType]=\"column.valueType\"\n [value]=\"subItem[column.property]\"\n >\n <dt *ngIf=\"!column.hideLabelOnMobile\">\n <ng-container *transloco=\"let t\">\n {{ t(column.label ?? '') }}\n </ng-container>\n </dt>\n <dd [ngStyle]=\"column.boldTextOnMobile ? { 'font-weight': '500' } : {'font-weight': '400'}\">\n <ng-container *ngIf=\"customRowTemplates.get(column.property) as tdTemplate; else defaultTdTemplate\">\n <ng-template *ngTemplateOutlet=\"tdTemplate; context: { $implicit: subItem }\"></ng-template>\n </ng-container>\n <ng-template #defaultTdTemplate>\n {{ subItem[column.property] }}\n </ng-template>\n </dd>\n <ng-content></ng-content>\n </div>\n </ng-container>\n </dl>\n <span\n role=\"button\"\n tabindex=\"0\"\n class=\"nav-chevron-field\"\n [attr.aria-expanded]=\"rowSelectors.get(item[rowId])?.value\"\n >\n <svg\n width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M20 9L12 17L4 9\"\n stroke=\"currentColor\"\n stroke-width=\"1.6\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n </span>\n </td>\n </tr>\n </ng-container>\n\n <!-- Custom appended rows -->\n <ng-container *ngIf=\"appendedRowsTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container\n *ngTemplateOutlet=\"trTemplate || null; context: { $implicit: item }\"\n >\n </ng-container>\n </ng-container>\n </ng-container>\n </tbody>\n\n <!-- Table footer -->\n <tfoot *ngIf=\"customFooterTemplateRef as trTemplate\">\n <!-- Cannot infer trTemplate as TemplateRef therefore null -->\n <ng-container *ngTemplateOutlet=\"trTemplate || null\"> </ng-container>\n </tfoot>\n</table>\n", styles: ["::ng-deep .gds-table{--gds-ref-pallet-base100: #f8f8f8;--gds-ref-pallet-base600: hsl(0, 0%, 53%);--sg-table-header-background: #1a1a1a;--sg-table-header-color: #fff;--sg-table-cell-padding-x: .5rem;--sg-table-cell-padding-y: .6875rem;--sg-table-border-width: 1px;--sg-table-border-color: var(--gds-ref-pallet-base300);--sg-table-sort-icon-color: var(--gds-ref-pallet-base600);--gds-ref-pallet-base500: hsl(0, 0%, 68%);--sg-table-sort-icon-color-active: #fff;--gds-sys-color-surface: #fff;--gds-ref-pallet-base200: #e8e8e8;--gds-sys-color-base: #333;--gds-sys-shape-corner-small: .125rem;--gds-sys-color-blue-dark-2: #007ac7;--gds-sys-shape-corner-medium: .25rem;--sg-table-row-expand-font-weight: 500;--sg-table-row-expand-font-weight-light: 400;border-collapse:collapse;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);width:100%;border-bottom:none;--gds-comp-checkbox-container-height: 1rem;--gds-comp-checkbox-container-width: 1rem;--gds-comp-checkbox-container-color: var(--gds-sys-color-background-primary);--gds-comp-checkbox-container-color-disabled: var(--gds-sys-color-base-300);--gds-comp-checkbox-border-color: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-radius: var(--gds-sys-shape-corner-small);--gds-comp-checkbox-hover-border-color: var(--gds-sys-color-base-600);--gds-comp-checkbox-container-color-selected: var(--gds-sys-color-base-900);--gds-comp-checkbox-border-color-selected: var(--gds-sys-color-text-inverted);--gds-comp-checkbox-border-color-focus: var(--gds-sys-color-dark-blue-2)}::ng-deep .gds-table thead tr th{background:#333;color:var(--sg-table-header-color);padding:.3rem var(--sg-table-cell-padding-x);text-align:left;font-weight:500}::ng-deep .gds-table thead tr th.icon-invert.sg-sortable .sg-table-sort:after{margin-left:0;margin-right:.3rem;order:-1}::ng-deep .gds-table thead tr th .sg-table-sort{color:inherit;width:100%;text-align:left;display:flex;align-items:center;border-radius:.125rem;--gds-sys-color-focus-outline: $_header-color}::ng-deep .gds-table thead tr th .sg-table-sort:focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table thead tr th .sg-table-sort:focus,::ng-deep .gds-table thead tr th .sg-table-sort:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table thead tr th[aria-sort] .sg-table-sort:after,::ng-deep .gds-table thead tr th.sg-sortable .sg-table-sort:after{content:\"\";background:var(--gds-sys-color-base-500);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3E%3Cpath%20d='M11.107%205.86147L10.6429%205.39741C10.5328%205.28726%2010.3546%205.28726%2010.2445%205.39741L6.60933%209.03257V1.03101C6.60933%200.876318%206.48276%200.749756%206.32808%200.749756H5.67183C5.51714%200.749756%205.39058%200.876318%205.39058%201.03101V9.03257L1.75542%205.39741C1.64526%205.28726%201.46714%205.28726%201.35698%205.39741L0.89292%205.86147C0.782764%205.97163%200.782764%206.14976%200.89292%206.25991L5.80073%2011.1677C5.91089%2011.2779%206.08901%2011.2779%206.19917%2011.1677L11.107%206.25991C11.2171%206.14976%2011.2171%205.97163%2011.107%205.86147Z'%20fill='%23ADADAD'/%3E%3C/svg%3E\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:right;mask-position:right;width:12px;height:12px;margin-left:.3rem}::ng-deep .gds-table thead tr th[aria-sort=ascending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active);transform:rotate(180deg)}::ng-deep .gds-table thead tr th[aria-sort=descending] .sg-table-sort:after{background:var(--sg-table-sort-icon-color-active)}::ng-deep .gds-table tbody tr td,::ng-deep .gds-table tbody tr th{border-top:var(--sg-table-border-width) solid var(--gds-sys-color-base-300);padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x);vertical-align:top}::ng-deep .gds-table tbody tr.collapsible~.sub-row{display:none}::ng-deep .gds-table tbody tr.collapsible.expanded~.sub-row.show{display:table-row}::ng-deep .gds-table tbody tr td.collapse-control,::ng-deep .gds-table tbody tr td.select-control{width:15px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn{min-height:unset;padding:0;background:transparent}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder{cursor:pointer;width:12px}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg{width:12px;fill:#868686}::ng-deep .gds-table tbody tr td.collapse-control>.collapse-btn>.icon-holder svg[name=angle-right]{width:9px}@media (max-width: 36em){::ng-deep .gds-table.table-mobile{width:100%;table-layout:fixed;border-bottom:none}::ng-deep .gds-table.table-mobile thead{position:sticky;top:0;display:block;background:#333}}@media (max-width: 36em) and (hover: none) and (pointer: coarse){::ng-deep .gds-table.table-mobile thead{display:table-header-group}}@media (max-width: 36em){::ng-deep .gds-table.table-mobile thead tr{display:flex;overflow:auto}::ng-deep .gds-table.table-mobile thead tr::-webkit-scrollbar{display:none}::ng-deep .gds-table.table-mobile thead tr th{flex:auto;text-align:left!important;white-space:nowrap}::ng-deep .gds-table.table-mobile tbody tr{display:flex;flex-direction:column;border-bottom:var(--sg-table-border-width) solid var(--gds-sys-color-base-300)}::ng-deep .gds-table.table-mobile tbody tr td{display:flex;justify-content:space-between;align-items:center;border-top:none!important}::ng-deep .gds-table.table-mobile tbody tr td:before{content:attr(data-label);font-weight:700}}::ng-deep .gds-table .web-view{display:table-cell}::ng-deep .gds-table .mobile-view{display:none}::ng-deep .gds-table tr:hover td{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table .gds-table__numeric-col{text-align:right}::ng-deep .gds-table thead tr th.gds-table__numeric-col .sg-table-sort{justify-content:end}::ng-deep .gds-table th button{background-color:#0000;border:0;font-family:inherit;font-size:inherit;font-weight:inherit;padding:0;cursor:pointer}::ng-deep .gds-table tbody{border-bottom:var(--sg-table-border-width) solid var(--sg-table-border-color)}::ng-deep .gds-table td{cursor:pointer}::ng-deep .gds-table tfoot{border-top:1px solid;border-bottom:none;font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table tfoot ::ng-deep td{padding:var(--sg-table-cell-padding-y) var(--sg-table-cell-padding-x)}::ng-deep .gds-table th.column__check{height:vanilla-px-to-rem(32px);width:vanilla-px-to-rem(40px)}::ng-deep .gds-table th.column__check div{min-height:100%}::ng-deep .gds-table th.column__check input:checked+label:after{top:.6rem;display:inline}::ng-deep .gds-table th.column__check label{display:inline;padding:0}::ng-deep .gds-table th.column__check label:before{top:.55rem}::ng-deep .gds-table td.column__check{width:vanilla-px-to-rem(40px)}::ng-deep .gds-table td.column__check div{min-height:unset}::ng-deep .gds-table td.column__check label{padding:0}::ng-deep .gds-table td.column__check label:before{margin:0}::ng-deep .gds-table tr.row__expand{background-color:var(--gds-ref-pallet-base100)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap{display:flex;flex-wrap:nowrap}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap.no-sub-items{padding-left:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field{width:1.5rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field svg{transition:transform .3s ease}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .chevron-field[aria-expanded=true] svg{transform:rotate(-180deg)}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text{padding-left:.2rem}::ng-deep .gds-table tr.row__expand .gds-item-field-wrap .gds-item-field-text .gds-item-field-extra-label{font-weight:var(--sg-table-row-expand-font-weight-light, 400)}::ng-deep .gds-table tr.row__expand td{font-weight:var(--sg-table-row-expand-font-weight, 500)}::ng-deep .gds-table label.form-control input[type=checkbox]{cursor:pointer;height:0;opacity:0;position:absolute;width:0;z-index:-1}::ng-deep .gds-table label.form-control{align-items:flex-start}::ng-deep .gds-table label.form-control:has(input[type=checkbox]){padding:.6875rem 1rem .5625rem}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus:not(:focus-visible){box-shadow:none;outline:0}::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus,::ng-deep .gds-table label.form-control:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}::ng-deep .gds-table label.form-control input[type=checkbox]~i{margin-right:.75rem;margin-top:.0625rem;flex-shrink:0;box-shadow:inset 0 0 0 1px var(--gds-sys-color-text-primary);position:relative;border-radius:var(--gds-sys-shape-corner-small);background-color:transparent;flex:0 0 auto;height:1rem;width:1rem}::ng-deep .gds-table label.form-control input[type=checkbox]:not(:checked):focus-visible~i{box-shadow:inset 0 0 0 1px var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control:hover input[type=checkbox]:not(.disabled,:disabled,:checked,:indeterminate)~i{background-color:var(--gds-sys-color-base-200)}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i{background-color:var(--gds-sys-color-base-900)}::ng-deep .gds-table label.form-control input[type=checkbox]:indeterminate~i:after{border-bottom:2px solid var(--gds-sys-color-background-primary);border-left:none;transform:scale(1) rotate(0);opacity:1}::ng-deep .gds-table label.form-control:has(input[type=checkbox].is-invalid){border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control:has(input[type=checkbox].is-invalid){border:none;margin:0}@supports (-moz-appearance: none){::ng-deep .gds-table label.form-control.is-invalid{border:.0625rem solid var(--gds-sys-color-text-error);margin-bottom:.5rem}::ng-deep .gds-table .is-invalid label.form-control.is-invalid{border:none;margin:0}}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i{background:var(--sg-form-control-bg-disabled)!important;border-color:var(--border-disabled-color)!important;cursor:not-allowed;box-shadow:inset 0 0 0 1px var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled:checked~i:after,::ng-deep .gds-table label.form-control input[type=checkbox].disabled:checked~i:after{border-color:var(--border-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span{color:var(--text-disabled-color)!important;cursor:not-allowed}::ng-deep .gds-table label.form-control input[type=checkbox]:disabled~span::placeholder,::ng-deep .gds-table label.form-control input[type=checkbox].disabled~span::placeholder{color:var(--text-disabled-color)}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{content:\"\";opacity:0;position:absolute}::ng-deep .gds-table label.form-control input[type=checkbox]~i:after{border-bottom:3px solid var(--gds-sys-color-text-inverted);border-left:3px solid var(--gds-sys-color-text-inverted);height:.5rem;width:1rem;left:0;top:.1875rem;transform:scale(.601) rotate(-45deg);transform-origin:center}::ng-deep .gds-table label.form-control input[type=checkbox]:checked~i:after{opacity:1}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]){padding:.75rem 1rem;border:1px solid transparent;border-radius:var(--gds-sys-shape-corner-medium);align-items:center;cursor:pointer;display:flex;flex-direction:row-reverse;font:inherit;justify-content:flex-end;position:relative;user-select:none;-webkit-user-select:none;line-height:1.125rem;padding:0}::ng-deep .gds-table .gds-field-checkbox-wrap .form-control:has(input[type=checkbox]):has(input:disabled){cursor:not-allowed}::ng-deep .gds-table #thead-checkbox input[type=checkbox]~i{box-shadow:inset 0 0 0 1px var(--gds-comp-checkbox-container-color);background-color:var(--gds-comp-checkbox-border-color)}::ng-deep .gds-table #thead-checkbox:has(input[type=checkbox]:focus-visible):focus-within{outline-color:var(--sg-table-header-color)}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i{box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:not(:checked)~i:after{border-color:#ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i{background-color:var(--gds-comp-checkbox-border-color);box-shadow:inset 0 0 0 1px #ababab}::ng-deep .gds-table #thead-checkbox input[type=checkbox]:hover:checked~i:after{border-color:#ababab}@media screen and (max-width: 600px){.gds-table thead{display:none}.gds-table .row__expand td:not(:first-child){display:none}.gds-table .row__expand td{display:table-cell}.gds-table .web-view{display:none}.gds-table .mobile-view{display:flex;align-items:center}.gds-table .mobile-view .mobile-view-field-wrap{display:grid;grid-template-columns:1fr 1fr;width:100%}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field{display:flex;flex-direction:column;padding-bottom:.3rem}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(odd){justify-self:start;align-items:start;text-align:start}.gds-table .mobile-view .mobile-view-field-wrap .mobile-view-field:nth-child(2n){align-items:end;justify-self:end;text-align:end}.gds-table .mobile-view .nav-chevron-field{width:1.5rem;padding-left:.5rem}.gds-table .mobile-view .nav-chevron-field svg{transition:transform .3s ease}.gds-table .mobile-view .nav-chevron-field[aria-expanded=true] svg{transform:rotate(-90deg)}.gds-table .mobile-view .settings-field{width:1.5rem;padding:0 1rem}.gds-table .mobile-view .settings-field svg{transition:all .3s ease}.gds-table .mobile-view .settings-field:hover svg{fill:var(--gds-sys-color-blue-dark-2)}}\n"] }]
6949
6961
  }], propDecorators: { customTemplates: [{
6950
6962
  type: ContentChildren,
6951
6963
  args: [TableTemplateDirective, { descendants: true }]
@@ -7340,11 +7352,11 @@ class TabsComponent {
7340
7352
  this.onSelect(tabElement.id.slice(4));
7341
7353
  }
7342
7354
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TabsComponent, deps: [{ token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Component }); }
7343
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TabsComponent, selector: "nggv-tabs", inputs: { thook: "thook", tabs: "tabs" }, outputs: { ngvTabSwitch: "ngvTabSwitch" }, host: { properties: { "class.gds-tabs": "this.baseClass", "attr.data-thook": "this.thook" } }, queries: [{ propertyName: "tabRefs", predicate: TabDirective }], usesOnChanges: true, ngImport: i0, template: "<ng-container *transloco=\"let t\">\n <div\n class=\"gds-tabs__tablist\"\n role=\"tablist\"\n [attr.data-thook]=\"thook + '-list'\"\n (keydown)=\"onKeyDown($event)\"\n >\n <button\n class=\"gds-tabs__tab\"\n [id]=\"'tab-' + (tab.id !== undefined ? tab.id : '')\"\n role=\"tab\"\n [attr.data-thook]=\"tab.thook || thook + '-tab'\"\n [tabindex]=\"tab.active ? 0 : -1\"\n [attr.aria-controls]=\"'panel-' + (tab.id !== undefined ? tab.id : '')\"\n [attr.aria-selected]=\"tab.active\"\n [class.-selected]=\"tab.active\"\n [disabled]=\"tab.disabled\"\n [innerHTML]=\"t(tab.tab)\"\n (click)=\"onSelect(tab.id)\"\n *ngFor=\"let tab of tabs\"\n ></button>\n </div>\n <article\n *ngIf=\"useRouting\"\n class=\"gds-tabs__panel -active\"\n [id]=\"'panel-' + (selectedTab ? selectedTab.id : '')\"\n [attr.data-thook]=\"thook + '-panel'\"\n [attr.aria-labelledby]=\"'tab-' + (selectedTab ? selectedTab.id : '')\"\n >\n <router-outlet></router-outlet>\n </article>\n <ng-content *ngIf=\"!useRouting\"></ng-content>\n</ng-container>\n", styles: [":host{--sg-border-width: 1px;--sg-border-color: #868686;--gds-ref-pallet-base600: #868686;--text-primary-color: #333}:host .gds-tabs__tablist{display:flex;overflow-x:auto;padding:.25rem;margin:-.25rem;--sg-border-color: var(--gds-sys-color-base-600)}:host .gds-tabs__tablist::-webkit-scrollbar{display:none}:host .gds-tabs__tablist:not(.gds-tabs--fluid):after{border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);content:\"\";display:block;flex-grow:1}:host .gds-tabs__tab{background-color:transparent;border:0;cursor:pointer;padding:0;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);padding:.75rem 1rem;font-weight:500;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;display:flex;justify-content:center;color:var(--text-primary-color);text-align:center;text-decoration:none;white-space:nowrap;border-radius:.25rem .25rem 0 0;border-left:var(--sg-border-width) solid transparent;border-top:var(--sg-border-width) solid transparent;border-right:var(--sg-border-width) solid transparent;gap:.25rem;transition:none;font-size:1rem;font-family:inherit}:host .gds-tabs__tab:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .gds-tabs__tab:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-tabs__tab:focus,:host .gds-tabs__tab:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.gds-tabs--fluid :host .gds-tabs__tab{flex:1}:host .gds-tabs__tab svg>*{fill:currentColor}:host .gds-tabs__tab.-selected{box-sizing:border-box;border-top:solid var(--sg-border-width) var(--sg-border-color);border-right:solid var(--sg-border-width) var(--sg-border-color);border-left:solid var(--sg-border-width) var(--sg-border-color);transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-top-left-radius:.25rem;border-top-right-radius:.25rem;border-bottom:var(--sg-border-width) transparent;color:var(--text-primary-color);transition:none;padding:11px 15px 12px}:host .gds-tabs__tab.-selected:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .gds-tabs__tab[disabled]{color:#adadad;cursor:not-allowed}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: i1$2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] }); }
7355
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TabsComponent, selector: "nggv-tabs", inputs: { thook: "thook", tabs: "tabs" }, outputs: { ngvTabSwitch: "ngvTabSwitch" }, host: { properties: { "class.gds-tabs": "this.baseClass", "attr.data-thook": "this.thook" } }, queries: [{ propertyName: "tabRefs", predicate: TabDirective }], usesOnChanges: true, ngImport: i0, template: "<ng-container *transloco=\"let t\">\n <div\n class=\"gds-tabs__tablist\"\n role=\"tablist\"\n [attr.data-thook]=\"thook + '-list'\"\n (keydown)=\"onKeyDown($event)\"\n >\n <button\n class=\"gds-tabs__tab\"\n [id]=\"'tab-' + (tab.id !== undefined ? tab.id : '')\"\n role=\"tab\"\n [attr.data-thook]=\"tab.thook || thook + '-tab'\"\n [tabindex]=\"tab.active ? 0 : -1\"\n [attr.aria-controls]=\"'panel-' + (tab.id !== undefined ? tab.id : '')\"\n [attr.aria-selected]=\"tab.active\"\n [class.-selected]=\"tab.active\"\n [disabled]=\"tab.disabled\"\n [innerHTML]=\"t(tab.tab)\"\n (click)=\"onSelect(tab.id)\"\n *ngFor=\"let tab of tabs\"\n ></button>\n </div>\n <article\n *ngIf=\"useRouting\"\n class=\"gds-tabs__panel -active\"\n [id]=\"'panel-' + (selectedTab ? selectedTab.id : '')\"\n [attr.data-thook]=\"thook + '-panel'\"\n [attr.aria-labelledby]=\"'tab-' + (selectedTab ? selectedTab.id : '')\"\n >\n <router-outlet></router-outlet>\n </article>\n <ng-content *ngIf=\"!useRouting\"></ng-content>\n</ng-container>\n", styles: [":host{--sg-border-width: 1px;--sg-border-color: #868686;--gds-ref-pallet-base600: #868686;--text-primary-color: #333}:host .gds-tabs__tablist{display:flex;overflow-x:auto;padding:.25rem;margin:-.25rem;--sg-border-color: var(--gds-sys-color-base-600)}:host .gds-tabs__tablist::-webkit-scrollbar{display:none}:host .gds-tabs__tablist:not(.gds-tabs--fluid):after{border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);content:\"\";display:block;flex-grow:1}:host .gds-tabs__tab{background-color:transparent;border:0;cursor:pointer;padding:0;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);padding:.75rem 1rem;font-weight:500;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;display:flex;justify-content:center;color:var(--text-primary-color);text-align:center;text-decoration:none;white-space:nowrap;border-radius:.25rem .25rem 0 0;border-left:var(--sg-border-width) solid transparent;border-top:var(--sg-border-width) solid transparent;border-right:var(--sg-border-width) solid transparent;gap:.25rem;transition:none;font-size:1rem;font-family:inherit}:host .gds-tabs__tab:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .gds-tabs__tab:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-tabs__tab:focus,:host .gds-tabs__tab:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.gds-tabs--fluid :host .gds-tabs__tab{flex:1}:host .gds-tabs__tab svg>*{fill:currentColor}:host .gds-tabs__tab.-selected{box-sizing:border-box;border-top:solid var(--sg-border-width) var(--sg-border-color);border-right:solid var(--sg-border-width) var(--sg-border-color);border-left:solid var(--sg-border-width) var(--sg-border-color);transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-top-left-radius:.25rem;border-top-right-radius:.25rem;border-bottom:var(--sg-border-width) transparent;color:var(--text-primary-color);transition:none;padding:11px 15px 12px}:host .gds-tabs__tab.-selected:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .gds-tabs__tab[disabled]{color:#adadad;cursor:not-allowed}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }, { kind: "directive", type: i1$2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] }); }
7344
7356
  }
7345
7357
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TabsComponent, decorators: [{
7346
7358
  type: Component,
7347
- args: [{ selector: 'nggv-tabs', template: "<ng-container *transloco=\"let t\">\n <div\n class=\"gds-tabs__tablist\"\n role=\"tablist\"\n [attr.data-thook]=\"thook + '-list'\"\n (keydown)=\"onKeyDown($event)\"\n >\n <button\n class=\"gds-tabs__tab\"\n [id]=\"'tab-' + (tab.id !== undefined ? tab.id : '')\"\n role=\"tab\"\n [attr.data-thook]=\"tab.thook || thook + '-tab'\"\n [tabindex]=\"tab.active ? 0 : -1\"\n [attr.aria-controls]=\"'panel-' + (tab.id !== undefined ? tab.id : '')\"\n [attr.aria-selected]=\"tab.active\"\n [class.-selected]=\"tab.active\"\n [disabled]=\"tab.disabled\"\n [innerHTML]=\"t(tab.tab)\"\n (click)=\"onSelect(tab.id)\"\n *ngFor=\"let tab of tabs\"\n ></button>\n </div>\n <article\n *ngIf=\"useRouting\"\n class=\"gds-tabs__panel -active\"\n [id]=\"'panel-' + (selectedTab ? selectedTab.id : '')\"\n [attr.data-thook]=\"thook + '-panel'\"\n [attr.aria-labelledby]=\"'tab-' + (selectedTab ? selectedTab.id : '')\"\n >\n <router-outlet></router-outlet>\n </article>\n <ng-content *ngIf=\"!useRouting\"></ng-content>\n</ng-container>\n", styles: [":host{--sg-border-width: 1px;--sg-border-color: #868686;--gds-ref-pallet-base600: #868686;--text-primary-color: #333}:host .gds-tabs__tablist{display:flex;overflow-x:auto;padding:.25rem;margin:-.25rem;--sg-border-color: var(--gds-sys-color-base-600)}:host .gds-tabs__tablist::-webkit-scrollbar{display:none}:host .gds-tabs__tablist:not(.gds-tabs--fluid):after{border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);content:\"\";display:block;flex-grow:1}:host .gds-tabs__tab{background-color:transparent;border:0;cursor:pointer;padding:0;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);padding:.75rem 1rem;font-weight:500;transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;display:flex;justify-content:center;color:var(--text-primary-color);text-align:center;text-decoration:none;white-space:nowrap;border-radius:.25rem .25rem 0 0;border-left:var(--sg-border-width) solid transparent;border-top:var(--sg-border-width) solid transparent;border-right:var(--sg-border-width) solid transparent;gap:.25rem;transition:none;font-size:1rem;font-family:inherit}:host .gds-tabs__tab:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .gds-tabs__tab:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-tabs__tab:focus,:host .gds-tabs__tab:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.gds-tabs--fluid :host .gds-tabs__tab{flex:1}:host .gds-tabs__tab svg>*{fill:currentColor}:host .gds-tabs__tab.-selected{box-sizing:border-box;border-top:solid var(--sg-border-width) var(--sg-border-color);border-right:solid var(--sg-border-width) var(--sg-border-color);border-left:solid var(--sg-border-width) var(--sg-border-color);transition:all .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-top-left-radius:.25rem;border-top-right-radius:.25rem;border-bottom:var(--sg-border-width) transparent;color:var(--text-primary-color);transition:none;padding:11px 15px 12px}:host .gds-tabs__tab.-selected:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .gds-tabs__tab[disabled]{color:#adadad;cursor:not-allowed}\n"] }]
7359
+ args: [{ selector: 'nggv-tabs', template: "<ng-container *transloco=\"let t\">\n <div\n class=\"gds-tabs__tablist\"\n role=\"tablist\"\n [attr.data-thook]=\"thook + '-list'\"\n (keydown)=\"onKeyDown($event)\"\n >\n <button\n class=\"gds-tabs__tab\"\n [id]=\"'tab-' + (tab.id !== undefined ? tab.id : '')\"\n role=\"tab\"\n [attr.data-thook]=\"tab.thook || thook + '-tab'\"\n [tabindex]=\"tab.active ? 0 : -1\"\n [attr.aria-controls]=\"'panel-' + (tab.id !== undefined ? tab.id : '')\"\n [attr.aria-selected]=\"tab.active\"\n [class.-selected]=\"tab.active\"\n [disabled]=\"tab.disabled\"\n [innerHTML]=\"t(tab.tab)\"\n (click)=\"onSelect(tab.id)\"\n *ngFor=\"let tab of tabs\"\n ></button>\n </div>\n <article\n *ngIf=\"useRouting\"\n class=\"gds-tabs__panel -active\"\n [id]=\"'panel-' + (selectedTab ? selectedTab.id : '')\"\n [attr.data-thook]=\"thook + '-panel'\"\n [attr.aria-labelledby]=\"'tab-' + (selectedTab ? selectedTab.id : '')\"\n >\n <router-outlet></router-outlet>\n </article>\n <ng-content *ngIf=\"!useRouting\"></ng-content>\n</ng-container>\n", styles: [":host{--sg-border-width: 1px;--sg-border-color: #868686;--gds-ref-pallet-base600: #868686;--text-primary-color: #333}:host .gds-tabs__tablist{display:flex;overflow-x:auto;padding:.25rem;margin:-.25rem;--sg-border-color: var(--gds-sys-color-base-600)}:host .gds-tabs__tablist::-webkit-scrollbar{display:none}:host .gds-tabs__tablist:not(.gds-tabs--fluid):after{border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);content:\"\";display:block;flex-grow:1}:host .gds-tabs__tab{background-color:transparent;border:0;cursor:pointer;padding:0;border-bottom:solid var(--sg-border-width) var(--sg-border-color);--border-color: var(--sg-border-color);padding:.75rem 1rem;font-weight:500;transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;display:flex;justify-content:center;color:var(--text-primary-color);text-align:center;text-decoration:none;white-space:nowrap;border-radius:.25rem .25rem 0 0;border-left:var(--sg-border-width) solid transparent;border-top:var(--sg-border-width) solid transparent;border-right:var(--sg-border-width) solid transparent;gap:.25rem;transition:none;font-size:1rem;font-family:inherit}:host .gds-tabs__tab:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#199be3;color:#fff;--background: rgb(25.4035777564, 154.8940067842, 227.221994169);--color: rgb(255, 255, 255);border-color:#199be3}:host .gds-tabs__tab:focus:not(:focus-visible){box-shadow:none;outline:0}:host .gds-tabs__tab:focus,:host .gds-tabs__tab:focus-visible{outline-color:var(--gds-sys-color-focus-outline);outline-style:solid;outline-width:.125rem;outline-offset:.125rem}.gds-tabs--fluid :host .gds-tabs__tab{flex:1}:host .gds-tabs__tab svg>*{fill:currentColor}:host .gds-tabs__tab.-selected{box-sizing:border-box;border-top:solid var(--sg-border-width) var(--sg-border-color);border-right:solid var(--sg-border-width) var(--sg-border-color);border-left:solid var(--sg-border-width) var(--sg-border-color);transition:border .3s cubic-bezier(.23,1,.32,1),outline-offset 0s,outline-width 0s;border-top-left-radius:.25rem;border-top-right-radius:.25rem;border-bottom:var(--sg-border-width) transparent;color:var(--text-primary-color);transition:none;padding:11px 15px 12px}:host .gds-tabs__tab.-selected:not(:disabled,.disabled,[aria-disabled]):hover{background-color:#333;color:#fff;--background: rgb(51, 51, 51);--color: rgb(255, 255, 255);border-color:#333}:host .gds-tabs__tab[disabled]{color:#adadad;cursor:not-allowed}\n"] }]
7348
7360
  }], ctorParameters: () => [{ type: i1$2.Router }], propDecorators: { baseClass: [{
7349
7361
  type: HostBinding,
7350
7362
  args: ['class.gds-tabs']