.steps {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  /* overflow-x: auto; */
}

.steps .step:first-child {
  margin-left: auto;
  /*cursor:not-allowed;
	pointer-events: none;*/
}

.steps .step:last-child {
  margin-right: auto;
}
/* todo gordan, nekako aktivirati na ng repeat */
.step:first-of-type .step-circle::before {
  display: none;
}
.step:last-of-type .step-content {
  padding-right: 0;
}

.step-content {
  cursor:pointer;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 12rem;
  min-width: 12rem;
  max-width: 12rem;
  padding-top: 0.5rem;
  padding-right: 1rem;
}

.step-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #adb5bd;
  border: 2px solid #adb5bd;
  border-radius: 100%;
  background-color: #fff;
}
.step-circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  /* width: calc(5rem + 1rem - 1.5rem); */
  width: calc(12rem + 1rem - 1.5rem);
  height: 2px;
  transform: translate(-100%, -50%);
  color: #adb5bd;
  background-color: currentColor;
}

.step-text {
  color: #adb5bd;
  /* word-break: break-all; */
  word-break: normal;
  margin-top: 0.25em;
  line-height: 1;
  font-size:16px;
 
}

.step-active .step-success .step-circle{
  border-color: #000000!important;
}

.step-active .step-circle::before {
  color: #3569c3;
}
.step-active .step-text {
  font-weight: 600;
  color: #3569c3;
}

.step-error .step-circle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.step-error .step-circle::before {
  color: #dc3545;
}
.step-error .step-text {
  color: #dc3545;
}

.step-success .step-circle {
  color: white;
  background-color: #3569c3;
  border-color: #3569c3;
  font-weight: 600;
  font-size: 12px;
}

.step-active .step-text {
  /* color: white;
  background-color: #3569c3; */
  /*border-color: #3569c3;*/
  /* border-color: #adb5bd!important; */
  text-decoration: underline;
  font-weight: 600;
  font-size: 16px;
}

.step-active .step-circle {
  color: white;
  background-color: #3569c3;
  /*border-color: #3569c3;*/
  border-color: #3569c3;
  font-weight: 600;
  font-size: 12px;
}
.step-success .step-circle::before {
  color: #3569c3;
  font-weight: 600;
  font-size: 12px;
}
.step-success .step-text {
  color: #3569c3;
  font-weight: 600;
  font-size: 16px;
}

/*# sourceMappingURL=bootstrap-steps.css.map */