/*! mixins */
/*----------------------------------------------
 *key options                                  
 *- top-left,top-right,bottom-left,bottom-right
-----------------------------------------------*/
/*---------------------------------------
 *media queries                         
 *- break points options from variables:
 *  $bp-xs: 576px;                        
 *  $bp-sm: 768px;                        
 *  $bp-md: 992px;                        
 *  $bp-lg: 1200px;                       
----------------------------------------*/
.l-step__item.is-active .l-step__item-number {
  opacity: 1;
}
.l-step__item.is-active .l-step__item-text {
  opacity: 1;
}
.l-step__item.is-active:after {
  background: #007bff;
  opacity: 1;
}

.l-step__item:hover .l-step__item-number {
  opacity: 1;
}
.l-step__item:hover .l-step__item-text {
  opacity: 1;
}

.l-step__item.is-done .l-step__item-number {
  opacity: 1;
  background-color: rgba(0, 123, 255, 0.2);
  color: #007bff;
  box-shadow: none;
}
.l-step__item.is-done .l-step__item-text {
  opacity: 0.5;
}
.l-step__item.is-done:after {
  background: #007bff;
  opacity: 1;
}

.l-step {
  display: flex;
  justify-content: center;
  padding: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.l-step__item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-basis: 33.33%;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.l-step__item:after {
  content: "";
  position: absolute;
  width: calc(100% - 42px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #007bff, #007bff 7px, transparent 7px, transparent 10px);
  right: calc(50% + 21px);
  top: calc(50% - 12px);
  transform: translate(0, -50%);
  transition: none;
  opacity: 0.5;
}
.l-step__item:first-child:after {
  content: none !important;
}
.l-step__item-number {
  width: 35px;
  height: 35px;
  line-height: 35px;
  box-shadow: inset 0 0 0 3px #007bff;
  border-radius: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  opacity: 0.5;
  transition: 0.3s;
}
.l-step__item-text {
  font-weight: bold;
  font-size: 12px;
  opacity: 0.5;
  transition: 0.3s;
}/*# sourceMappingURL=l-step.css.map */