.sr-only {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px
}

/* For high contrast mode change img to a more contrasting one (white instead of blue)*/
/* Accessibility styles [CDCSS-70769] Start*/
.input-wrapper.active, .input-search-button:focus {
  border: 2px solid var(--cfsColorBrandDarkblue100) !important;
}

/* For high contrast mode change img to a more contrasting one (white instead of blue)*/
@media (forced-colors: active) {
  @media (prefers-color-scheme: dark) {  
    /* Change fill color to white instead of blue for svg icons*/
    .iconContrastMode, .link-icon, .closeIcon, .search-icon {
      filter: brightness(0) invert(1);
    }

    .input-wrapper.active, .input-search-button:focus, .input-clear-button:focus {
      border: 2px solid var(--cfsColorSystemWhite100) !important;
    }
  }
}

.borderContrastMode {
  border: 1px solid transparent;
}
/* Accessibility styles [CDCSS-70769] End*/

.link-arrow {
  display: inline-block;
  background-size: var(--cfsTextLinkDesktopContainerBoundingBoxLeadingSizingSizing) !important;
  background-position: right 70%;
  background-repeat: no-repeat;
  padding-right: 28px;
  margin-right: -28px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--primaryBlue) !important;
}

.link-arrow:hover {
  color: var(--cfsTextLinkDesktopContainerBoundingBoxLeadingIconHoverFill) !important;
  text-decoration: none;
}

@media only screen and (max-width:767px) {
  .link-arrow {
    background-size: 20px;
    padding-right: 24px;
    margin-right: -24px;
  }
  .link-arrow-back {
    background-size: 20px;
    padding-right: 24px;
    margin-right: -24px;
  }
}

.link-arrow-back {
  background-size: 24px;
  background-position: right 70%;
  background-repeat: no-repeat;
  padding-right: 28px;
  margin-right: -28px;
  transform: rotateY(180deg);
  text-align: right;
}
.link-arrow-back .link-arrow {
  background: none;
  padding-right: 0;
  margin-right: 0;
  transform: rotateY(180deg);
}