.steps {
  display: flex;
  flex-direction: column;
}

.steps > .step {
  display: flex;
  flex-direction: column;
}

.steps > .step > .header {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

.steps > .step > .header > .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: var(--color--inactive);
  color: var(--color--principal--text);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.steps > .step.active > .header > .number,
.steps > .step.complete > .header > .number {
  background-color: var(--color--principal);
}

.steps > .step > .header > .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 12px;
  cursor: pointer;
  opacity: 0.6;
}

.steps > .step > .header > .title > .title {
  line-height: 1;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.steps > .step > .header > .title > .subtitle {
  font-size: 12px;
  font-weight: 600;
  text-shadow: none;
  line-height: 1;
  transition: 0.3s;
}

.steps > .step.active > .header > .title,
.steps > .step > .header:hover > .title,
.steps > .step.active > .header > .title > .title,
.steps > .step > .header:hover > .title > .title,
.steps > .step.active > .header > .title > .subtitle,
.steps > .step > .header:hover > .title > .subtitle {
  color: var(--color--text);
  opacity: 1;
}

.steps > .step.active > .header > .title,
.steps > .step.active > .header > .title > .title,
.steps > .step.active > .header > .title > .subtitle {
  cursor: default;
}

.steps > .step > .expandable {
  padding-top: 12px;
  border-left: 1px solid #DDD;
  margin: 6px 0px 6px 12px;
  height: 0;
  transition: height 0.2s;
  overflow: hidden;
}

.steps > .step.active > .expandable {
  padding-top: 0;
  padding: 6px 0px 6px 24px;
  height: auto;
  transition: height 0.2s;
}

.steps > .step > .expandable > .content.containDropDown {
  min-height: 250px;
}

.steps > .step > .expandable > .bottom {
  margin-top: 18px;
}

.steps > .step > .expandable > .bottom > .btn {
  padding: 6px !important;
  font-size: 13px !important;
  float: none;
}

/*# sourceMappingURL=steps.css.map */

/*# sourceMappingURL=steps.css.map */
