
.sticky-head {
    position: sticky;
    -webkit-position: sticky;
    top: 70px;
    z-index: 999;
    padding: 0.5rem 0;
    background: #fafafa;
    margin-bottom: 20px;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

/*form styles*/
#step-container {
    position: relative;
    margin-top: 20px;
}


/*progressbar*/
#progressbar {
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}

#progressbar li {
    text-align: center;
    list-style-type: none;
    font-size: 12px;
    position: relative;
}

#progressbar .active {
    color: #000000;
}

#progressbar li img {
    max-width: 30px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

#progressbar .active img {
    opacity: 1;
}

/*ProgressBar before any progress*/
#progressbar li:before {
    content: '';
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 16rem;
    height: 2px;
    background: rgb(230, 230, 230);
    position: absolute;
    left: -100%;
    top: 18px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #15acd9;
}
