.step-rows {
  display: flex;
  align-items: center;
}
.table-row-rows {
    width: 100px;
    height: 180px;
}
.vertical-line {
  width: 4px;
  margin-left: -30px
}
.vertical-line-start {
  height: 90px;
  margin-top: 90px;
}
.vertical-line-middle {
  width: 4px;
  height: 180px;
  margin-top: 0px;
}
.vertical-line-end {
  width: 4px;
  height: 90px;
  margin-top: -90px;
}
.steps-table-cell {
  margin: 0px;
  padding: 0px;
}
.steps-table-cell-rows {
  height: 180px;
}
.step-index-container-cols {
  height: 60px;
}
.step-index-container-rows {
  width: 60px;
}
.step-index-line-cols {
  top: 50%;
}
.step-line {
  height: 4px;
}
.step-number {
  height: 40px;
  top: 12px;
}
.step-icon {
  max-width: 100px;
  max-height: 60px;
  margin-top: 10px;
  margin-bottom: : 10px;
}
@media only screen and (max-width: 800px) {
  .step-icon {
    max-width: 60px;
    max-height: 40px;
  }
}
@media only screen and (min-width: 800px) and (max-width: 1200px) {
  .step-icon {
    max-width: 100px;
    max-height: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .step-icon {
    max-width: 120px;
    max-height: 80px;
  }
}
.step-content-container {
  margin: 10px;
}


@media only screen and (max-width: 800px) {
  .steps-table-cols {
    display: none;
  }
  .steps-table-rows {
    display: block;
  }
}
@media only screen and (min-width: 800px) {
  .steps-table-cols {
    display: block;
  }
  .steps-table-rows {
    display: none;
  }
}