#screen-only { display: block; } #mobile-only { display: none; } @media screen and (max-width: 480px) { #screen-only { display: none; } #mobile-only { display: block; } }


.stepcontainer {
      width: 100%;
      padding-left:50px;
      padding-right:50px;
      padding-top:50px;
      padding-bottom:100px;
      
  }

@media screen and (max-width: 480px) {
    .stepcontainer {
        width: 100%;
        height:100%;
        padding-left:10px;
        padding-right:10px;
        padding-top:20px;
        padding-bottom:150px;
    }
}

.progress_bar {
  counter-reset: step;
}
.progress_bar li {
  list-style-type: none;
  width: 20%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
  background: none;
}
.progress_bar li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}
.progress_bar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #7d7d7d;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.progress_bar li:first-child:after {
  content: none;
}
.progress_bar li.active {
  color: green;
}
.progress_bar li.active:before {
  border-color: #a6ce39;
}
.progress_bar li.active + li:after {
  background-color: #a6ce39;
}