/*
  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
 */
:host {
  display: block;
}
:host * {
  color: var(--color-content-default, #282828);
}

.button--icon {
  transform: rotate(180deg);
  color: var(--color-content-ghost, #8c8c8c);
}

.breadcrumb__button--0 {
  padding-left: 0;
}
.breadcrumb__button--0 .button--icon {
  display: none;
}
.breadcrumb__button--1 {
  padding-left: 8px;
}
.breadcrumb__button--2 {
  padding-left: 16px;
}
.breadcrumb__button--3 {
  padding-left: 24px;
}
.breadcrumb__button--4 {
  padding-left: 32px;
}

.breadcrumb__link--text {
  color: var(--color-content-disable, #595959);
}

.breadcrumb__link {
  text-decoration: none;
}

.breadcrumb__item {
  transition: color 0.15s, background-color 0.15s;
}
.breadcrumb__item bds-typo, .breadcrumb__item bds-icon, .breadcrumb__item .breadcrumb__text {
  color: var(--color-content-ghost, #8c8c8c);
}
.breadcrumb__item bds-typo:hover, .breadcrumb__item .breadcrumb__text:hover {
  color: var(--color-content-default, #282828);
}
.breadcrumb__item--active {
  border-radius: 12px;
}
.breadcrumb__item--active:hover {
  background-color: var(--color-surface-3, #e3e3e3);
}
.breadcrumb__item--active bds-typo, .breadcrumb__item--active bds-icon, .breadcrumb__item--active .breadcrumb__text {
  color: var(--color-content-default, #282828);
}