/*form styles*/

#msform {
    width: 850px;
    margin: auto;
    text-align: center;
    position: relative;
}

#msform fieldset {
    padding: 0px 0px 0px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    position: relative;
}


/*Hide all except first fieldset*/

#msform fieldset:not(:first-of-type) {
    display: none;
}


/*buttons*/

#msform .action-button {
    width: 100px;
    background: #67d5bf;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #67d5bf;
}


/*headings*/

.step-question {
    color: #000000;
    margin-bottom: 10px;
}

.custom-divider {
    background: #a8a8a8;
    height: 3px;
    width: 125px;
}


/*progressbar*/

#progressbar {
    margin-bottom: 10px;
    overflow: hidden;
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 25%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: #a8a8a8;
    border-radius: 3px;
    margin: 0 auto 5px auto;
    border-radius: 50%;
}


/*progressbar connectors*/

#progressbar li:after {
    content: "";
    width: 80%;
    height: 3px;
    background: #a8a8a8;
    position: absolute;
    left: -40%;
    top: 21px;
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}


/*marking active/completed steps green*/


/*The number of the step and the connector before it = green*/

#progressbar li.active:before,
#progressbar li.active:after {
    background: #e84d3d;
    color: white;
    z-index: 1;
}

.help-block {
    font-size: 0.8em;
    color: #7c7c7c;
    text-align: left;
    margin-bottom: 0.5em;
}


/*dashboard progress bar*/

.set-size {
    font-size: 10em;
}

.pie-wrapper {
    height: 1em;
    width: 1em;
    float: left;
    margin: 15px;
    position: relative;
}

.pie-wrapper:nth-child(3n+1) {
    clear: both;
}

.pie-wrapper .pie {
    height: 100%;
    width: 100%;
    clip: rect(0, 1em, 1em, 0.5em);
    left: 0;
    position: absolute;
    top: 0;
}

.pie-wrapper .pie .half-circle {
    height: 100%;
    width: 100%;
    border: 0.1em solid #3498db;
    border-radius: 50%;
    clip: rect(0, 0.5em, 1em, 0);
    left: 0;
    position: absolute;
    top: 0;
}

.pie-wrapper .label {
    background: #34495e;
    border-radius: 50%;
    bottom: 0.4em;
    color: #ecf0f1;
    cursor: default;
    display: block;
    font-size: 0.25em;
    left: 0.4em;
    line-height: 2.6em;
    position: absolute;
    right: 0.4em;
    text-align: center;
    top: 0.4em;
}

.pie-wrapper .label .smaller {
    color: #bdc3c7;
    font-size: .45em;
    padding-bottom: 20px;
    vertical-align: super;
}

.pie-wrapper .shadow {
    height: 100%;
    width: 100%;
    border: 0.1em solid #bdc3c7;
    border-radius: 50%;
}

.pie-wrapper.style-2 .label {
    background: none;
    color: #7f8c8d;
}

.pie-wrapper.style-2 .label .smaller {
    color: #bdc3c7;
}

.pie-wrapper.progress-30 .pie .right-side {
    display: none;
}

.pie-wrapper.progress-30 .pie .half-circle {
    border-color: #e74d3d;
}

.pie-wrapper.progress-30 .pie .left-side {
    transform: rotate(180deg);
}

@media screen and (max-width:992px) {
    #msform {
        width: 100%;
        margin: auto;
        text-align: center;
        position: relative;
    }
    #msform fieldset {
        padding: 0px;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    #progressbar li:after {
        content: "";
        width: 80%;
        height: 3px;
        background: #a8a8a8;
        position: absolute;
        left: -33%;
        top: 21px;
    }
}

@media screen and (max-width:500px) {
    #progressbar li:after {
        content: "";
        width: 70%;
        height: 3px;
        background: #a8a8a8;
        position: absolute;
        left: -23%;
        top: 21px;
    }
}
.sr-img1 img{
width: 100%;
}