:host {
  display: inline-flex;
}

.link {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  color: #0a8276;
  gap: 8px;
  line-height: 24px;
  font-family: var(--ifx-font-family);
}
.link:hover {
  cursor: pointer;
}
.link:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-color: #0A8276;
  outline-offset: 4px;
  border-radius: 3px;
}
.link.bold {
  font-weight: 600;
}
.link.bold:hover {
  text-decoration: underline;
}
.link.bold:active {
  color: #08665C;
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
}
.link.underlined {
  text-decoration: underline;
  text-decoration-color: #0a8276;
  color: #1D1D1D;
  text-underline-offset: 8px;
}
.link.underlined:hover {
  color: #0a8276;
}
.link.underlined:active {
  color: #0A8276;
}
.link.underlined:disabled, .link.underlined.disabled {
  text-decoration-color: #bfbbbb;
}
.link.title {
  text-decoration: none;
  font-weight: 600;
  color: #1D1D1D;
}
.link.title:hover {
  color: #0a8276;
}
.link.title:active {
  color: #08665C;
}
.link.menu {
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  color: #1D1D1D;
}
.link.menu:hover {
  color: #0a8276;
}
.link.menu:active {
  color: #08665C;
}
.link.small {
  font-size: 0.875rem;
}
.link.medium {
  font-size: 1rem;
}
.link.large {
  font-size: 1.125rem;
}
.link.extraLarge {
  font-size: 1.25rem;
}
.link.underline {
  text-decoration: underline;
}
.link:disabled, .link.disabled {
  color: #bfbbbb;
  cursor: default;
  pointer-events: none;
}