/*!
 * SmartWizard v4.3.x
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */

/* SmartWizard Theme: Circles */
.sw-theme-circles {
}

.sw-theme-circles .sw-container {
    min-height: 300px;
}

.sw-theme-circles .step-content {
    padding: 10px 0;
    background-color: #FFF;
    text-align: left;
    /*padding-top: 170px;*/
}

.new_scroll::-webkit-scrollbar {
    width: 8px;
}

.new_scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}

.new_scroll ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.sw-theme-circles .sw-toolbar {
    background: #fff;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0 !important;
}

.sw-theme-circles .sw-toolbar-top {
}

.sw-theme-circles .sw-toolbar-bottom {
    border-top-color: #ddd !important;
    border-bottom-color: #ddd !important;
}

.sw-theme-circles > ul.step-anchor {
    position: relative;
    /*position: fixed;*/
    background: #fff;
    border: none;
    list-style: none;
    /*margin-bottom: 40px;*/

    width: 100%;
    max-width: 1140px;
    z-index: 2;
}

.sw-theme-circles > ul.step-anchor:before {
    content: " ";
    position: absolute;
/*    top: 50%;*/
    top: 28%;
    bottom: 0;
    width: 100%;
    height: 10px;
    /*background-color: #f5f5f5;*/
    background-color: #AAAAAA;
/*    border-bottom: 1px solid #fff;*/
    border-radius: 6px;
    z-index: 0;
}

.sw-theme-circles > ul.step-anchor > li {
    border: none;
    /*margin-left: 40px;*/
    margin-left: 10%;
    z-index: 98;
}

.sw-theme-circles > ul.step-anchor > li > a {
/*    border: 2px solid #f5f5f5;
    background: #f5f5f5;*/
    border: 2px solid #D2D2D2;
    background: #D2D2D2;
/*    width: 75px;
    height: 75px;*/
    width: 77px;
    height: 77px;
    text-align: center;
    padding: 25px 0;
    border-radius: 50%;
    -webkit-box-shadow: inset 0px 0px 0px 3px #fff !important;
    box-shadow: inset 0px 0px 0px 3px #fff !important;
    text-decoration: none;
    outline-style: none;
    z-index: 99;
    color: #bbb;
    background: #D2D2D2;
    line-height: 1;
    margin: auto;
}

.sw-theme-circles > ul.step-anchor > li > a:hover {
    color: #bbb;
    background: #f5f5f5;
    border-width: 2px;
}

.sw-theme-circles > ul.step-anchor > li > a > small {
    position: relative;
    bottom: -40px;
    color: #ccc;
}

.sw-theme-circles > ul.step-anchor > li.clickable > a:hover {
    color: #4285F4 !important;


}

.sw-theme-circles > ul.step-anchor > li.active > a {
    /*border-color: #5bc0de;*/
    border-color: #48b0f5;
    color: #fff;
    /*background: #5bc0de;*/
    background: #48b0f5;
}

.sw-theme-circles > ul.step-anchor > li.active > a > small {
    color: #5bc0de;
}

.sw-theme-circles > ul.step-anchor > li.done > a {
    /*border-color: #5cb85c;*/
    color: #fff;
    /*background: #5cb85c;*/
    background: #D2D2D2;
    border-color: #D2D2D2;

}

.sw-theme-circles > ul.step-anchor > li.done > a > small {
    color: #5cb85c;
}

.sw-theme-circles > ul.step-anchor > li.danger > a {
    border-color: #d9534f;
    color: #d9534f;
    background: #fff;
}

.sw-theme-circles > ul.step-anchor > li.danger > a > small {
    color: #d9534f;
}

.sw-theme-circles > ul.step-anchor > li.disabled > a, .sw-theme-circles > ul.step-anchor > li.disabled > a:hover {
    color: #eee !important;
}

@media (max-width: 600px)
{
  .sw-theme-circles > ul.step-anchor > li
    {
        width: 50%;
    }
    .sw-theme-circles > ul.step-anchor > li small{
        text-align: center;
        display: block;
    }

    .sw-theme-circles > ul.step-anchor:before{ display: none;}
    .wizard > .steps a,
    .wizard > .steps a:hover,
    .wizard > .steps a:active
    {
        margin-top: 0.5em;
    }

    .wizard.vertical > .steps,
    .wizard.vertical > .actions
    {
        display: block;
        float: none;
        width: 100%;
    }

    .wizard.vertical > .content
    {
        display: block;
        float: none;
        margin: 0 0.5em 0.5em;
        width: auto;
    }
}

@media (max-width: 480px)
{
    .sw-theme-circles > ul.step-anchor > li
    {
        width: 100%;
    }
    .sw-theme-circles > ul.step-anchor:before{ display: none;}
    .sw-theme-circles > ul.step-anchor > li small{
        text-align: center;
        display: block;
    }
}
