/*
  Font family is Nunito Sans. Its fallback is Helvetica
*/
/*
  Font sizes have been converted to rem considering a base size of 16px.
*/
/*
*  Z-Index
*  
*  The z-index CSS property sets the z-order of a positioned element and its descendants or flex items. 
*  Overlapping elements with a larger z-index cover those with a smaller one.
*  
*  REF: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
*  REF: https://www.smashingmagazine.com/2019/04/z-index-component-based-web-application/  
*/
/**
 * Define media query values
 */
/** Customs */
/** Animations */
/** Aligns */
/** Scoll Bar */
/** Hover & Pressed */
:host {
  display: block;
  width: 100%;
}

.tab_group {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tab_group__header {
  padding: 4px 16px;
  overflow: hidden;
}
.tab_group__header__itens {
  display: flex;
  flex-direction: row;
  width: max-content;
  gap: 32px;
  margin: auto;
}
.tab_group__header__itens__center {
  justify-content: center;
  margin: auto;
}
.tab_group__header__itens__right {
  justify-content: right;
  margin: 0 0 0 auto;
}
.tab_group__header__itens__left {
  justify-content: left;
  margin: 0 auto 0 0;
}
.tab_group__header__itens__item {
  cursor: pointer;
  height: 46px;
  gap: 4px;
  width: auto;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  position: relative;
}
.tab_group__header__itens__item__typo {
  color: var(--color-content-disable, #595959);
}
.tab_group__header__itens__item__typo__disable {
  color: var(--color-content-ghost, #8c8c8c);
}
.tab_group__header__itens__item__typo__error {
  color: var(--color-surface-negative, #8a0000);
}
.tab_group__header__itens__item::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-radius: 4px;
}
.tab_group__header__itens__item:focus-visible {
  outline: none;
}
.tab_group__header__itens__item:focus-visible::before {
  border-color: var(--color-focus, #c226fb);
}
.tab_group__header__itens__item__open {
  color: var(--color-content-default, #282828);
  border-color: var(--color-primary, #1e6bf1);
}
.tab_group__header__itens__item__disable {
  cursor: no-drop;
}
.tab_group__slide {
  position: relative;
  overflow: hidden;
  padding: 0 16px;
  height: 54px;
  margin-left: 56px;
  margin-right: 56px;
}
.tab_group__slide-button {
  position: absolute;
  z-index: 1;
  background-color: var(--color-surface-1, #f6f6f6);
}
.tab_group__slide-button[icon=arrow-left] {
  left: 0;
}
.tab_group__slide-button[icon=arrow-right] {
  right: 0;
}
.tab_group__slide__itens {
  position: absolute;
  left: 56px;
  width: max-content;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4px;
  gap: 32px;
  -webkit-transition: left 0.5s;
  -moz-transition: left 0.5s;
  transition: left 0.5s;
}
.tab_group__content {
  height: 100%;
}
.tab_group__scrolled {
  flex-shrink: 999;
  overflow: auto;
}
.tab_group__scrolled::-webkit-scrollbar {
  width: 16px;
  background-color: var(--color-shadow-0, rgba(0, 0, 0, 0.04));
  border-radius: 10px;
}
.tab_group__scrolled::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 4px solid transparent;
  border-radius: 10px;
  background-clip: content-box;
  background-color: var(--color-border-1, rgba(0, 0, 0, 0.2));
}