.progress-box {
    width: 100%;
    margin-top: 40px;
    z-index: 9999;
}

.progress-box .progress-bar {
    width: 80%;
    height: 3px;
    background: #f2f1f1;
    margin-bottom: 3px;
    box-shadow: 0 0 2px #D5D4D4 inset;
    position: relative;
}

.progress-box .progress-bar .inner {
    position: relative;
    width: 0;
    height:100%;
    background: #299C90;
}

.progress-bar .inner {
    height: 0;
    width: 0;
    transition: all 1s ease-out;
}

.progress-bar-slider .inner {
    transition: none;
}

.progress-bar-slider .inner:after {
    content: " ";
    width: 24px;
    height: 24px;
    background-color: #299C90;
    position: absolute;
    right: -8px;
    top: -11px;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
    margin: 0px;
    border-radius: 50%;
}

.progress-slider {
    opacity: 0;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
    z-index: 10000;
    margin: 0;
}