/* Typography Usage mixins */
:host {
  box-sizing: border-box;
  display: block;
  position: relative;
}
:host * {
  box-sizing: border-box;
}
:host ::slotted(*) {
  all: unset;
  font-family: var(--type-system-title-01-font-family);
  font-size: calc(var(--type-system-title-01-font-size) * 1px);
  line-height: calc(var(--type-system-title-01-line-height) * 1px);
  font-weight: var(--type-system-title-01-font-weight);
  letter-spacing: calc(var(--type-system-title-01-letter-spacing) * 1px);
  color: var(--tds-inline-tabs-tab-color);
  text-decoration: none;
  display: block;
  position: relative;
  transition: color 0.15s ease-in-out 0s;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  padding: 20px 8px;
}
:host ::slotted(*:focus-visible) {
  outline: 2px solid var(--component--focus-ring-color-strong);
  box-shadow: 0 0 0 1px var(--component--focus-ring-color-discrete);
  outline-offset: 1px;
  z-index: 1;
  outline-offset: -2px;
}
:host .inline-tab-item:not(.selected)::after {
  width: 0%;
  transition: width 0.15s ease-in-out 0s;
}
:host .inline-tab-item {
  position: relative;
}
:host .inline-tab-item:hover:not(.disabled) {
  cursor: pointer;
}
:host .inline-tab-item:hover:not(.disabled) ::slotted(*) {
  color: var(--tds-inline-tabs-tab-color-hover);
}
:host .inline-tab-item:hover:not(.disabled)::after {
  width: 100%;
}
:host .inline-tab-item::after {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin-left: auto;
  width: 0%;
  margin-right: auto;
  height: 2px;
  background-color: var(--tds-inline-tabs-tab-indicator-background-hover);
  z-index: 1;
}
:host .selected ::slotted(*) {
  color: var(--tds-inline-tabs-tab-color-selected);
}
:host .selected::after {
  width: 100%;
  background-color: var(--tds-inline-tabs-tab-indicator-background-active);
}
:host .disabled ::slotted(*) {
  color: var(--tds-inline-tabs-tab-color);
  opacity: var(--tds-inline-tabs-tab-opacity-disabled);
}
:host .disabled::after {
  content: none;
}
:host .disabled ::slotted(*:hover) {
  cursor: not-allowed;
}
:host .disabled ::slotted(*:focus-visible)::before {
  outline: none;
}

:host(.last) {
  margin-right: 32px;
}