/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Tab {
  all: unset;
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
  box-sizing: border-box;
  color: var(--colorsTextSubdued, #606162);
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 16px 0;
  margin-right: 24px;
  text-decoration: none;
  font-weight: 600;
  min-width: 48px;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
}
.Tab .Tag {
  margin-left: 8px;
}
.Tab .a-Icon {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--colorsTextSubdued, #606162);
}
.Tab .a-Icon svg {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.TabGroup--fitted .Tab {
  width: 100%;
  text-align: center;
  margin-right: 0;
}
.TabGroup--leftAlign .Tab {
  text-align: left;
  justify-content: flex-start;
}
.Tab:focus {
  outline: 0;
}
.Tab.Tab--focus-visible:focus {
  outline: 0;
  position: relative;
}
.Tab.Tab--focus-visible:focus::after {
  position: absolute;
  content: "";
  box-shadow: inset 0 0 0 3px var(--colorsFocusRingPrimary, #a9d1ff);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.Tab--inactive:hover, .Tab--inactive--hover {
  box-shadow: 0 -2px 0 var(--colorsFocusRingPrimary, #78bbfa) inset;
  color: var(--colorsTextSubdued, #606162);
  text-decoration: none;
}

.Tab--disabled {
  pointer-events: none;
  opacity: 0.4;
}

.TabGroup--index .Tab {
  border-radius: 3px 3px 0 0;
  padding: 12px 16px;
  margin-right: 1px;
  min-width: 64px;
  box-shadow: 0 -1px 0 var(--colorsBorderGrey, #dfe0e1) inset;
  position: relative;
}
.TabGroup--index .Tab:hover, .TabGroup--index .Tab--hover {
  box-shadow: none;
}
.TabGroup--index .Tab:hover::before, .TabGroup--index .Tab--hover::before {
  content: "";
  border-radius: 3px 3px 0 0;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--colorsSurfaceInvertedStrong, #141414);
  opacity: 0.08;
}
.CardSection .TabGroup--index .Tab {
  box-shadow: none;
  margin-right: 0;
}
.TabGroup--index.TabGroup--large .Tab {
  padding: 16px;
}
.TabGroup--index .Tab--active {
  background-color: var(--colorsSurfaceDefault, white);
  box-shadow: 0 3px 0 var(--colorsSurfacePrimary, #0265dc) inset, -1px 0 0 var(--colorsBorderGrey, #dfe0e1) inset, 1px 0 0 var(--colorsBorderGrey, #dfe0e1) inset;
}
.TabGroup--index .Tab--active:hover {
  background-color: var(--colorsSurfaceDefault, white);
  box-shadow: 0 3px 0 var(--colorsSurfacePrimary, #0265dc) inset, -1px 0 0 var(--colorsBorderGrey, #dfe0e1) inset, 1px 0 0 var(--colorsBorderGrey, #dfe0e1) inset;
}
.CardSection .TabGroup--index .Tab--active {
  box-shadow: 0 3px 0 var(--colorsSurfacePrimary, #0265dc) inset, -1px 0 0 var(--colorsBorderGrey, #dfe0e1), 1px 0 0 var(--colorsBorderGrey, #dfe0e1), 0 1px 0 var(--colorsSurfaceDefault, white);
}

.Tab--active {
  box-shadow: 0 -2px 0 var(--colorsSurfacePrimary, #0265dc) inset;
  color: var(--colorsTextDefault, #141414);
}
.Tab--active:hover {
  box-shadow: 0 -2px 0 var(--colorsSurfacePrimary, #0265dc) inset;
}

.TabGroup--dark .Tab--active,
.TabGroup--dark .Tab--active:hover,
.TabGroup--dark .Tab {
  box-shadow: none;
}
.CardSection .TabGroup--dark .Tab--active,
.CardSection .TabGroup--dark .Tab--active:hover,
.CardSection .TabGroup--dark .Tab {
  box-shadow: none;
}
.TabGroup--dark .Tab:not(.Tab--active) {
  color: var(--colorsTextInverted, white);
}
.TabGroup--dark .Tab:not(.Tab--active):hover {
  background: var(--colorsHoverOnPrimary, rgba(255, 255, 255, 0.16));
  box-shadow: none;
}

.TabGroup::-webkit-scrollbar {
  height: 0;
}

/*# sourceMappingURL=Tab.css.map */
