@keyframes reanimate-underline-1px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 1px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 1px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 1px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
@keyframes reanimate-underline-2px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 2px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 2px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 2px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 2px;
  }
}
@keyframes reanimate-underline-3px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 3px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 3px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 3px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 3px;
  }
}
@keyframes reanimate-underline-4px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 4px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 4px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 4px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 4px;
  }
}
@keyframes reanimate-underline-5px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 5px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 5px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 5px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 5px;
  }
}
/** Usage

    ```scss
      .lds { 
        @include ldsRingAnimation($foreground-color: #fff, $width: 2px, $size: 25px);
      }
    ```

    ```html
      <div class="lds">
        <div></div>
        <div></div>
        <div></div>
      </div>
    ```
 */
:root {
  --nni-hcp--button--background-color: #005ad2;
  --nni-hcp--button--background-color--hover: #0f448a;
  --nni-hcp--button--background-color--light: #eff0f2;
  --nni-hcp--button--background-color--light-hover: #dfe1e5;
  --nni-hcp--button--foreground-color: #ffffff;
  --nni-hcp--button--foreground-color--light: #005ad2;
  --nni-hcp--button-hero--background-color: rgba(15,28,51,0.6549);
  --nni-hcp--button-hero--background-color--hover: rgba(15,28,51,0.72157);
  --nni-hcp--button-hero--foreground-color: #ffffff;
  --nni-hcp--button-link--foreground-color: #005ad2;
  --nni-hcp--button-link--foreground-color--light: #ffffff;
}

.nni-hcp--button {
  font-family: "Apis Medium", "noto-sans", Arial, Helvetica, Verdana, sans-serif;
}
.nni-hcp--button a {
  background: #005ad2;
  color: #ffffff;
  font-size: 15px;
  padding: 14px 33px;
  cursor: pointer;
  line-height: 60px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s;
}
article .nni-hcp--button a {
  background: #005ad2;
  background: var(--nni-hcp--button--background-color);
  color: #ffffff;
  color: var(--nni-hcp--button--foreground-color);
}
.nni-hcp--button a * {
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button a {
    font-size: 22px;
  }
}
.nni-hcp--button a br {
  display: none;
}
@media (hover: hover) {
  .nni-hcp--button a:hover {
    background: #0f448a;
  }
  article .nni-hcp--button a:hover {
    background: #0f448a;
    background: var(--nni-hcp--button--background-color--hover);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button a:hover {
    background: #0f448a;
  }
  article .nni-hcp--button a:hover {
    background: #0f448a;
    background: var(--nni-hcp--button--background-color--hover);
  }
}
.nni-hcp--button a .button-arrow {
  display: none;
  position: relative;
  transition: all 0.25s;
}
.nni-hcp--button a .button-arrow .button-arrow-fill {
  fill: #ffffff;
}
article .nni-hcp--button a .button-arrow .button-arrow-fill {
  fill: #ffffff;
  fill: var(--nni-hcp--button--foreground-color);
}
.nni-hcp--button a .button-arrow.button-arrow-large {
  top: -1px;
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button a .button-arrow.button-arrow-large {
    top: 2px;
  }
}
.nni-hcp--button.nni-hcp--button-size--large a {
  padding: 12px 47px;
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button.nni-hcp--button-size--large a {
    padding: 14px 61px;
    line-height: 65px;
  }
}
.nni-hcp--button.nni-hcp--text--light a {
  background-color: #eff0f2;
  color: #005ad2;
}
article .nni-hcp--button.nni-hcp--text--light a {
  background-color: #eff0f2;
  background-color: var(--nni-hcp--button--background-color--light);
  color: #005ad2;
  color: var(--nni-hcp--button--foreground-color--light);
}
@media (hover: hover) {
  .nni-hcp--button.nni-hcp--text--light a:hover {
    background: #dfe1e5;
  }
  article .nni-hcp--button.nni-hcp--text--light a:hover {
    background: #dfe1e5;
    background: var(--nni-hcp--button--background-color--light-hover);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button.nni-hcp--text--light a:hover {
    background: #dfe1e5;
  }
  article .nni-hcp--button.nni-hcp--text--light a:hover {
    background: #dfe1e5;
    background: var(--nni-hcp--button--background-color--light-hover);
  }
}
.nni-hcp--button.nni-hcp--text--light .button-arrow-fill,
.nni-hcp--button.nni-hcp--text--light .button-icon-fill {
  fill: #005ad2 !important;
}
article .nni-hcp--button.nni-hcp--text--light .button-arrow-fill,
article .nni-hcp--button.nni-hcp--text--light .button-icon-fill {
  fill: #005ad2 !important;
  fill: var(--nni-hcp--button--foreground-color--light) !important;
}
.nni-hcp--button.nni-hcp--text--light .button-icon-stroke {
  stroke: #005ad2 !important;
}
article .nni-hcp--button.nni-hcp--text--light .button-icon-stroke {
  stroke: #005ad2 !important;
  stroke: var(--nni-hcp--button--foreground-color--light) !important;
}
.nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a {
  color: #ffffff;
}
.nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text {
  pointer-events: all;
}
@media (hover: hover) {
  .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
    background-size: 100% 2px;
    background-position: 100% 100%;
  }
  .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:hover, .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:focus {
    animation: reanimate-underline-2px 0.6s;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
    background-size: 100% 2px;
    background-position: 100% 100%;
  }
  .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:hover, .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:focus {
    animation: reanimate-underline-2px 0.6s;
  }
}
@media (hover: hover) {
  article .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-image: linear-gradient(var(--nni-hcp--button-link--foreground-color--light), var(--nni-hcp--button-link--foreground-color--light));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
    background-size: 100% 2px;
    background-position: 100% 100%;
  }
  article .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:hover, article .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:focus {
    animation: reanimate-underline-2px 0.6s;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  article .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-image: linear-gradient(var(--nni-hcp--button-link--foreground-color--light), var(--nni-hcp--button-link--foreground-color--light));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
    background-size: 100% 2px;
    background-position: 100% 100%;
  }
  article .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:hover, article .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-text:focus {
    animation: reanimate-underline-2px 0.6s;
  }
}
article .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a {
  color: #ffffff;
  color: var(--nni-hcp--button-link--foreground-color--light);
}
@media (hover: hover) {
  .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a:hover {
    background-color: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a:hover {
    background-color: none;
  }
}
.nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text a .button-icon-stroke {
  stroke: #ffffff !important;
}
.nni-hcp--button.nni-hcp--button-style--text a {
  position: relative;
  font-size: 14px;
  color: #005ad2;
  line-height: 24px;
  padding: 0 !important;
  background-color: transparent !important;
  background: none;
  border: none !important;
  white-space: normal;
  border-radius: 0;
  padding-bottom: 2px;
  display: inline;
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button.nni-hcp--button-style--text a {
    font-size: 16px;
    line-height: 35px;
  }
}
.nni-hcp--button.nni-hcp--button-style--text a .button-text {
  pointer-events: all;
}
@media (hover: none) {
  .nni-hcp--button.nni-hcp--button-style--text a .button-text {
    background-size: 0;
  }
}
@media (hover: hover) {
  .nni-hcp--button.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#005ad2, #005ad2);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
  }
  .nni-hcp--button.nni-hcp--button-style--text a .button-text:hover, .nni-hcp--button.nni-hcp--button-style--text a .button-text:focus {
    background-size: 100% 2px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#005ad2, #005ad2);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
  }
  .nni-hcp--button.nni-hcp--button-style--text a .button-text:hover, .nni-hcp--button.nni-hcp--button-style--text a .button-text:focus {
    background-size: 100% 2px;
  }
}
@media (hover: none) {
  article .nni-hcp--button.nni-hcp--button-style--text a .button-text {
    background-size: 0;
  }
}
@media (hover: hover) {
  article .nni-hcp--button.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#005ad2, #005ad2);
    background-image: linear-gradient(var(--nni-hcp--button-link--foreground-color), var(--nni-hcp--button-link--foreground-color));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
  }
  article .nni-hcp--button.nni-hcp--button-style--text a .button-text:hover, article .nni-hcp--button.nni-hcp--button-style--text a .button-text:focus {
    background-size: 100% 2px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  article .nni-hcp--button.nni-hcp--button-style--text a .button-text {
    text-decoration: none;
    background-image: linear-gradient(#005ad2, #005ad2);
    background-image: linear-gradient(var(--nni-hcp--button-link--foreground-color), var(--nni-hcp--button-link--foreground-color));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
  }
  article .nni-hcp--button.nni-hcp--button-style--text a .button-text:hover, article .nni-hcp--button.nni-hcp--button-style--text a .button-text:focus {
    background-size: 100% 2px;
  }
}
article .nni-hcp--button.nni-hcp--button-style--text a {
  color: #005ad2;
  color: var(--nni-hcp--button-link--foreground-color);
}
.nni-hcp--button.nni-hcp--button-style--text a br {
  display: inline;
}
.nni-hcp--button.nni-hcp--button-style--text a .button-external-site {
  margin-left: 2px;
}
.nni-hcp--button.nni-hcp--button-style--text a .button-icon-stroke {
  stroke: #005ad2 !important;
}
.nni-hcp--button.nni-hcp--button-style--text.text-with-arrow .button-arrow-text {
  display: inline-block;
  position: relative;
  top: 7px;
}
.nni-hcp--button.nni-hcp--button-style--text.text-with-arrow .button-arrow-text .button-arrow-fill {
  fill: #005ad2 !important;
  fill: #005ad2 !important;
  fill: var(--nni-hcp--button--foreground-color--light) !important;
}
.nni-hcp--button.nni-hcp--text--light.nni-hcp--button-style--text.text-with-arrow .button-arrow-text .button-arrow-fill {
  fill: #ffffff !important;
  fill: #ffffff !important;
  fill: var(--nni-hcp--button--foreground-color) !important;
}
.nni-hcp--button.nni-hcp--button-style--arrow a {
  line-height: 65px;
  padding: 16px 8px;
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button.nni-hcp--button-style--arrow a {
    padding: 16px 13px;
  }
}
.nni-hcp--button.nni-hcp--button-style--arrow a .button-text {
  display: none;
}
.nni-hcp--button.nni-hcp--button-style--arrow a .button-arrow-large {
  display: inline-block;
}
.nni-hcp--button.nni-hcp--button-size--medium a {
  font-size: 18px;
  line-height: 49px;
  padding: 10px 33px;
}
.nni-hcp--button.nni-hcp--button-size--medium.nni-hcp--button-style--arrow a {
  padding: 12px 8px;
  border-radius: 50%;
}
.nni-hcp--button.nni-hcp--button-size--medium.nni-hcp--button-style--arrow a .button-arrow-small {
  display: inline-block;
}
.nni-hcp--button.nni-hcp--button-size--medium.nni-hcp--button-style--arrow a .button-arrow-large {
  display: none;
}
.nni-hcp--button.nni-hcp--button-size--small a {
  font-size: 14px;
  line-height: 40px;
  padding: 8px 33px;
}
.nni-hcp--button.nni-hcp--button-size--small.nni-hcp--button-style--arrow a {
  padding: 7px 8px;
  border-radius: 50%;
}
.nni-hcp--button.nni-hcp--button-size--small.nni-hcp--button-style--arrow a .button-arrow-small {
  display: inline-block;
}
.nni-hcp--button.nni-hcp--button-size--small.nni-hcp--button-style--arrow a .button-arrow-large {
  display: none;
}
.nni-hcp--button.nni-hcp--button-style--extra-small a {
  padding: 2px 12px 3px 9px;
  line-height: 15px;
  font-size: 11px;
}
.nni-hcp--button .button-icon {
  position: relative;
  top: 4px;
}
.nni-hcp--button .button-icon.button-external-site {
  margin-left: 15px;
  margin-right: -10px;
  margin-bottom: 2px;
}
.nni-hcp--button.nni-hcp--button-style--hero a, .nni-hcp--button.nni-hcp--button-style--hero-transparent a {
  padding: 12px 11px 12px 27px;
  position: relative;
  padding-right: 94px;
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-arrow-fill, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow-fill {
  stroke: #ffffff;
  fill: none !important;
}
article .nni-hcp--button.nni-hcp--button-style--hero a .button-arrow-fill, article .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow-fill {
  stroke: #ffffff !important;
  stroke: var(--nni-hcp--button-hero--foreground-color) !important;
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button.nni-hcp--button-style--hero a, .nni-hcp--button.nni-hcp--button-style--hero-transparent a {
    padding: 13px 14px 13px 34px;
    padding-right: 92px;
  }
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-arrow, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow {
  position: absolute;
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-icon, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-icon {
  top: 3px;
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-icon .button-icon-stroke, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-icon .button-icon-stroke {
  stroke: #ffffff !important;
}
article .nni-hcp--button.nni-hcp--button-style--hero a .button-icon .button-icon-stroke, article .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-icon .button-icon-stroke {
  stroke: #ffffff !important;
  stroke: var(--nni-hcp--button-hero--foreground-color) !important;
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-arrow__line, .nni-hcp--button.nni-hcp--button-style--hero a .button-arrow__head, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow__line, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow__head {
  transition: all 0.25s;
  position: relative;
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-arrow__line, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow__line {
  display: inline-block;
  top: -9px;
  height: 1px;
  width: 33px;
  background: #ffffff;
}
article .nni-hcp--button.nni-hcp--button-style--hero a .button-arrow__line, article .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow__line {
  background: #ffffff;
  background: var(--nni-hcp--button-hero--foreground-color);
}
@media (hover: hover) {
  .nni-hcp--button.nni-hcp--button-style--hero a:hover .button-arrow__line, .nni-hcp--button.nni-hcp--button-style--hero-transparent a:hover .button-arrow__line {
    width: 40px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button.nni-hcp--button-style--hero a:hover .button-arrow__line, .nni-hcp--button.nni-hcp--button-style--hero-transparent a:hover .button-arrow__line {
    width: 40px;
  }
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-arrow__head, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow__head {
  left: -13px;
}
.nni-hcp--button.nni-hcp--button-style--hero a .button-arrow-large, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow-large {
  margin-left: 35px;
  display: inline-block;
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button.nni-hcp--button-style--hero a .button-arrow-large, .nni-hcp--button.nni-hcp--button-style--hero-transparent a .button-arrow-large {
    margin-left: 29px;
  }
}
.nni-hcp--button.nni-hcp--button-style--hero-transparent a {
  background: rgba(15,28,51,0.6549);
  color: #ffffff;
}
article .nni-hcp--button.nni-hcp--button-style--hero-transparent a {
  background: rgba(15,28,51,0.6549);
  background: var(--nni-hcp--button-hero--background-color);
  color: #ffffff;
  color: var(--nni-hcp--button-hero--foreground-color);
}
@media (hover: hover) {
  .nni-hcp--button.nni-hcp--button-style--hero-transparent a:hover {
    background: rgba(15,28,51,0.72157);
  }
  article .nni-hcp--button.nni-hcp--button-style--hero-transparent a:hover {
    background: rgba(15,28,51,0.72157);
    background: var(--nni-hcp--button-hero--background-color--hover);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button.nni-hcp--button-style--hero-transparent a:hover {
    background: rgba(15,28,51,0.72157);
  }
  article .nni-hcp--button.nni-hcp--button-style--hero-transparent a:hover {
    background: rgba(15,28,51,0.72157);
    background: var(--nni-hcp--button-hero--background-color--hover);
  }
}
.nni-hcp--button.nni-hcp--button-style--transparent a {
  background: transparent;
  border: 1px solid #ffffff;
}
.nni-hcp--button.nni-hcp--button-style--outline a {
  background: transparent;
  border: 1px solid #005ad2;
  color: #005ad2;
}
.nni-hcp--button.nni-hcp--button-style--outline a:hover {
  background: #f4f5f6;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a {
  display: flex;
  align-items: center;
  background: none;
  background-color: transparent;
  width: 100%;
  height: 60px;
  border-radius: 12px;
  padding: 6px;
  font-size: 20px;
  line-height: 60px;
  color: #005ad2;
  color: #005ad2;
  color: var(--nni-hcp--button--foreground-color--light);
  position: relative;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.25s;
  background: #005ad2;
  border-radius: 12px;
  opacity: 0;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 8px;
  font-size: 0;
  background: #d9e7fb;
  border-radius: 8px;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a .icon img {
  display: inline-block;
  width: 32px;
  height: 32px;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a .button-text {
  display: inline-block;
  padding-left: 12px;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a .button-arrow-text {
  display: inline-block;
  position: absolute;
  top: calc(50% + 8px);
  right: 12px;
  transform: translateY(-50%);
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a .button-arrow-text svg {
  width: 32px;
  height: 32px;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a .button-arrow-text svg .button-arrow-fill {
  fill: #005ad2 !important;
  fill: #005ad2 !important;
  fill: var(--nni-hcp--button--foreground-color--light) !important;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a:hover {
  background: none;
  background-color: transparent;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a:hover::before {
  opacity: 0.25;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025 a:hover .button-arrow-text {
  right: 8px;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025.nni-hcp--text--light a {
  color: #ffffff;
  color: #ffffff;
  color: var(--nni-hcp--button-hero--foreground-color);
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025.nni-hcp--text--light a::before {
  background: #ffffff;
}
article .nni-hcp--button.nni-hcp--button-style--hero-retrofit-2025.nni-hcp--text--light a .button-arrow-text .button-arrow-fill {
  fill: #ffffff !important;
  fill: #ffffff !important;
  fill: var(--nni-hcp--button--foreground-color) !important;
}
.nni-hcp--button.disabled.disabled > div > a {
  cursor: default;
  pointer-events: none;
  background: #eff0f2;
  color: #aeb3bd;
  border: none;
  border-radius: 50px;
  white-space: nowrap;
}

.nni-hcp--button-strip {
  display: flex;
  justify-content: center;
}
.nni-hcp--button-strip .nni-hcp--button a {
  border-radius: 0;
}
.nni-hcp--button-strip .nni-hcp--button:first-child a {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.nni-hcp--button-strip .nni-hcp--button:last-child a {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.nni-hcp--button__modal > .container {
  max-width: 1312px;
  margin: 36px auto 0;
  padding-bottom: 44px;
}
.nni-hcp--button__modal > .container .isi {
  margin-bottom: 44px;
}
.nni-hcp--button__modal > .container .modal-content-wrapper {
  margin: 0 24px;
}
@media screen and (min-width: 500px) {
  .nni-hcp--button__modal > .container .modal-content-wrapper {
    margin: 0 56px;
  }
}
@media screen and (min-width: 1000px) {
  .nni-hcp--button__modal > .container .modal-content-wrapper {
    margin: 0 56px;
  }
}
.nni-hcp--button__modal > .container .modal-content-wrapper .modal-content {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  overflow: auto;
  position: relative;
}
.nni-hcp--button__modal > .container .modal-content-wrapper .modal-content .loading-indicator {
  width: 50px;
  height: 50px;
  margin: 30px auto;
  border: 6px solid rgba(0, 0, 0, 0.5);
  border-left-color: rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  animation: rotate 1s linear infinite;
}
.nni-hcp--button__modal > .container .modal-content-wrapper .close {
  position: absolute;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  transition: transform 0.25s;
  top: 13px;
  right: 9px;
}
@media (hover: hover) {
  .nni-hcp--button__modal > .container .modal-content-wrapper .close:hover {
    transform: scale(1.1);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nni-hcp--button__modal > .container .modal-content-wrapper .close:hover {
    transform: scale(1.1);
  }
}
.nni-hcp--button__modal > .container .modal-content-wrapper .close .icon {
  background: url(clientlibs/resources/close.87b32c12.svg) center/contain no-repeat;
  width: 23px;
  height: 23px;
}
@media screen and (min-width: 500px) {
  .nni-hcp--button__modal > .container .modal-content-wrapper .close {
    top: 19px;
    right: 15px;
  }
  .nni-hcp--button__modal > .container .modal-content-wrapper .close .icon {
    width: 29px;
    height: 29px;
  }
}

article .nni-hcp--button.nni-hcp--button-style--hero.nni-hcp--text--light a .button-arrow__line {
  background: #005ad2;
  background: var(--nni-hcp--button--foreground-color--light);
}
article .nni-hcp--button.nni-hcp--button-style--hero.nni-hcp--text--light a .button-arrow-fill {
  stroke: #005ad2 !important;
  stroke: var(--nni-hcp--button--foreground-color--light) !important;
}
