.wizard {
  position: relative;
  margin-bottom: 60px;
}
.steps .current-info, .steps .number {
  display: none; }

.steps {
  height: 4px;
  position: absolute;
  background: #262626;
  bottom: 30px;
  left: 0; 
  right:0;
}
.steps ul {
    margin-bottom: 0;
    height: 4px;
    position: absolute;
    background-image: linear-gradient(to right, #08b2ca, #00a453);
    width: 5%;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease; 
}
.steps:before {
    content: "";
    color: #808080;
    position: absolute;
    right: 0;
    bottom: 3px;
    font-size: 13px;
    transition: all 0.3s ease; }
.steps:after {
    content: "";
    color: #808080;
    position: absolute;
    left: 0;
    bottom: 3px;
    font-size: 13px;
}
.steps.step-2 ul {
    width: 66.67%;
    transition: all 0.3s ease; 
}
.steps.step-2:before {
    content: '2';
    right: 66.67%;
    transition: all 0.3s ease; }
.steps.step-3 ul {
    width: 100%;
    transition: all 0.3s ease; }
.steps.step-3:before {
    content: '';
    left: 100%;
    transition: all 0.1s ease; }

.inner {
  padding: 10px 0 60px 0;
 }

.section-3 h6 {
  font-size: 13px;
  color: #333;
  padding-top: 5px;
  margin-bottom: 14px; }



.actions ul {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: -45px;
  right: 0;
  left: 0;
  margin-bottom: 0; 
}
.actions li{
    margin: 0 10px;
}
.actions li a {
  color: #808080;
  cursor: pointer;
  font-size: 13px;
  position: relative;
  width: 90px;
  text-align: center;
  height: 40px;
  line-height: 33px;
  border: solid 4px #262626;
}
.actions li:last-child a{
  color: #00ac82
}
.actions li:last-child a:hover{
  color: #00ac82;
  background-color: #262626;
}
.actions li a:hover {
    color:#ddd;
    text-decoration: none;
   }

.actions li[aria-disabled="true"] a {
  opacity: 0;
  transition: all 1s; }

.actions li[aria-disabled="false"] a {
    border: solid 4px #262626 !important;
    padding: 0;
}
.actions li[aria-disabled="false"] a:hover {
    background-color: #262626;
}
.actions li a:not([href="#finish"]) {
    margin-left: 0;
    line-height: 30px;
}
