:host {
  position: relative;
  margin: 0;
  padding: 0;
  left: 0;
  font-size: 14px;
  line-height: 1.5714285714;
  border-bottom: 1px solid var(--color-tabs-border);
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

:host .--c-tabs-list {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  padding: 7px 0px;
}

:host(.small) .--c-tabs-list {
  gap: 5px;
  padding: 5px 0px;
}

:host(.large) .--c-tabs-list {
  gap: 10px;
  padding: 10px 0px;
}
:host(.large) .--c-tabs-bar {
  height: 3px;
}

:host .--c-tabs-more {
  position: absolute;
  right: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
}
:host .--c-tabs-more.show {
  visibility: visible;
}

:host .--c-tabs-more-contents {
  visibility: hidden;
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(31, 35, 40, 0.12), 0 8px 24px rgba(66, 74, 83, 0.12);
  border-radius: 6px;
  background: var(--color-tabs-bg);
  padding: 10px;
}
:host .--c-tabs-more-contents.show {
  visibility: visible;
}