.stepProgressBar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.step {
  text-align: center;
  width: 20%;
  position: relative;
}

.step-text {
  margin-bottom: 10px;
  color: #000;
}

.bullet {
  border: 1px solid #fff;
  border-radius: 8px;
  height: 11px;
  width: 11px;
  color: #000;
  display: inline-block;
  transition: background-color 500ms;
  line-height: 8px;
  cursor: pointer;
}

.bullet.completed {
  color: white;
  background-color: #000;
}

.bullet.completed::after {
  content: '';
  position: absolute;
  bottom: 10px;
  height: 1px;
  background-color: #000;
  margin-left: 7px;  
}

.six-items .bullet.completed::after {
  width: calc(100% - 22px);
}

.progress-bar-left {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.progress-bar-right {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

th {
vertical-align: middle;
}

.hidden {
  display: none;
}

#loader {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    top:0;  
    opacity:0.5;
    background-color:#000;
    color:#fff;
    z-index:99999 !important;
}

.folio-orden {
  cursor: pointer;
}