/*
  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 {
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
:host ::slotted(bds-step:last-child) {
  flex: inherit;
}

::slotted(.stepper__container__divisor) {
  flex: 1 1 auto;
  align-self: center;
  height: 1.5px;
  background: var(--color-content-disable, #595959);
  margin: 0px 8px;
  min-width: 24px;
}

::slotted(.stepper__container__divisor--completed) {
  border-top: 2px solid var(--color-primary, #1e6bf1);
}