.ifx-content-switcher-item {
  all: unset;
  height: 36px;
  box-sizing: border-box;
  border-radius: 9999px;
  border: 3px solid transparent;
  padding: 7px 20px;
  font-family: var(--ifx-font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: transparent;
}
.ifx-content-switcher-item.selected {
  color: #0a8276;
  background-color: #ffffff;
  border: 3px solid #0a8276;
}
.ifx-content-switcher-item:hover {
  color: #08665c;
  background-color: #ffffff;
  border: 3px solid #08665c;
  cursor: pointer;
}
.ifx-content-switcher-item:active {
  color: #08665c;
  background-color: #ffffff;
  border: 3px solid #06534b;
}
.ifx-content-switcher-item:focus {
  color: #08665c;
  background-color: #ffffff;
  border: 3px solid #08665c;
}