/*Start vertical Wizard*/

.help {
    display: block;
    list-style: none;
    position: relative;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.help a:hover,.help a:active,.help a:focus {
    text-decoration: none
}

.help li {
    display: block;
    min-height: 65px;
    max-width: 215px;
    width: 100%;
}

.help li:before {
    border-top: 2px solid #b7babc;
    content: "";
    display: block;
    font-size: 0;
    overflow: auto;
    position: relative;
    top: 60px;
    right: 0;
    width: 100%;
    z-index: 1;
    transform: rotate(90deg) translateY(80px);
    left: 0;
    max-width: 40%;
    margin: 0 auto;
    text-align: center;
}
.help li.complete .step {
    background: #0aa66e;
    padding: 1px 6px;
    border: 3px solid #55606E
}

.help li .step i {
    /*font-size: 10px;*/
    font-weight: 400;
    position: relative;
    /*top: -1.5px*/
}

.help li .step {
    background: #B2B5B9;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 0px 0px;
    border: 3px solid transparent;
    border-radius: 50%;
    text-align: center;
    transition: all .1s linear 0s;
    width: 35px;
    height: 35px;
    line-height: normal;
    position: relative;
    z-index: 2;
}

.help li.active .step,.help li.active.complete .step {
    background: #087fdf;
    color: #fff;
    font-weight: 700;
    padding: 6px 0px 0px;
    font-size: 14px;
    border-radius: 50%;
}

.help li.complete .title,.help li.active .title {
    color: #000000;
}

.help li .title {
    display: inline;
    font-size: 15px;
    position: relative;
    top: 0;
}

.rightab {
    border: 1px solid #dedede;
    border-radius: 3px;
    padding: 15px;
    box-shadow: 1px 1px 11px #ccc;
    margin-bottom: 20px;
}
.vrtwiz {
    border: 1px solid #f5f5f5;
    box-shadow: 1px 1px 11px #f4f4f4;
    padding: 15px 0px 0px;
    height: 100%;
    width: 100%;
    overflow: auto;
    max-height: 750px;
}
.vrtwiz li a {
    color: #8a8787;
}
.help li.active a {
    background: #dedede;
    display: block;
    padding: 8px 10px;
    border-radius: 30px;
}
.help li a {
    display: block;
    padding: 8px 10px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}
.help li a:hover {
    background: #dadada;
    border-radius: 30px;
}
.pos{position: fixed;bottom: 20%;}
.rightab h3 {
    margin: 0px 0px 10px;
    border-bottom: 1px solid #188ae2;
    color: #f90;
    box-shadow: 0px 2px 0px #e5e6e6;
}
ul.steps{margin-top: 15px;}
ul.help {
    padding: 0px 12px;
}
.help li:nth-last-child(1):before {
    display: none;
}
ul.nav.nav-tabs.helptabs {
    border: none;
}
ul.nav.helptabs li {
    margin: 0px 0px 15px;
    border: none;
}
ul.nav.helptabs li.active a {
    border: none;
    background: #2196F3;
    color: #fff;
    border-radius: 30px;
    padding: 6px 8px;
}
ul.nav.helptabs li a {
    font-size: 13px;
    padding: 6px 8px;
    color: #474747;
    border:none;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
ul.nav.helptabs li a:hover {
    background: #2196f3;
    color: #fff;
    border-radius: 30px;
}
.tab-content.helpcont {
    border: 1px solid #f5f5f5;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0px 1px 14px 0px #efefef;
    -webkit-box-shadow: 0px 1px 14px 0px #efefef;
    -moz-box-shadow: 0px 1px 14px 0px #efefef;
    -ms-box-shadow: 0px 1px 14px 0px #efefef;
    -o-box-shadow: 0px 1px 14px 0px #efefef;
}

.vrtwiz::-webkit-scrollbar {
    width: 10px;
    display: none;
}
.vrtwiz:hover::-webkit-scrollbar{display: block;}
/* Track */
.vrtwiz::-webkit-scrollbar-track {
    
    border-radius: 10px;
}
 
/* Handle */
.vrtwiz::-webkit-scrollbar-thumb {
    background: #ebebeb; 
    border-radius: 10px;
}

/* Handle on hover */
.vrtwiz::-webkit-scrollbar-thumb:hover {
    background: #e1dddd; 
}

@media  (min-width: 992px) and (max-width: 1199px){
    .help li:before{    
        transform: rotate(90deg) translateY(65px);
        max-width: 60%;
    }
}
@media (max-width: 991px){
    .help li{
        float: left;
        width: 25%;
        height: auto;
        min-height: inherit;
        margin-bottom: 20px;
        max-width: inherit;
        text-align: center;
    }
    .help li:before{
            transform: none;
            max-width: inherit;
            position: absolute;
    }
    .help li .title{
        margin-top: 10px;
        text-align: center;
        display: block;
    }
}
/*End vertical Wizard*/