﻿.wizard {
   
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 0 8px #5f5f5f;
    margin: 20px auto;
    max-width: initial;
     padding: 15px 30px;
    position: relative;
}
    .wizard .nav-tabs {
        position: relative;
        margin: 20px auto;
        margin-bottom: 0;
        border-bottom-color: #e0e0e0;
        border-bottom:0;
    }

    .wizard > div.wizard-inner {
        position: relative;
    }

.connecting-line {
    background: #e0e0e0 none repeat scroll 0 0;
    height: 2px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 42%;
    width: 78%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 50px;
    height: 50px;
    line-height: 50px !important;
    display: inline-block;
    border-radius: 100px;
    background: #dddddd;
    border: 2px solid #e0e0e0;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    transition: all 0.4s ease-in-out;
    font-size: 18px;
}
span.round-tab i{
    color:#ffffff;
}
.wizard li.active span.round-tab {
    background: #479e47;
    border: 2px solid #479e47;
    
}
.wizard li.active span.round-tab i{
    color: #ffffff;
}

span.round-tab:hover {
    color: #333;
    border: 2px solid #777;
}

.wizard .nav-tabs > li {
    width: 25%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: #479e47;
    transition: 0.1s ease-in-out;

}

.wizard li.active:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 0 solid transparent;
    border-bottom-color: #479e47;
}

.wizard .nav-tabs > li a {
    width: 50px;
    height: 50px;
    margin: 10px auto;
    border-radius: 100%;
    padding: 0;
}

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 30px;
}

.wizard h3 {
    margin-top: 0;
}

/*custom css*/
/*glyphicon*/
span.round-tab .glyphicon{line-height:46px;}
.wizard-inner li div {
    padding-bottom: 0;
    text-align: center;
}
.wizard-inner li.active div {
    color:#479e47;
}

.mdl-header {
            background-color: #39974f;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 4px 4px 0 0;
    color: #ffffff;
    min-height: 16.4286px;
    padding: 15px;
    text-align: center;
    font-size: 18px;
        }
        .mdl-with-steps .modal-body{
            padding:0;
        }
        .mdl-content {
            padding: 0;
            line-height:25px;
        }
        .mt10{margin-top:10px;}
       .mdl-with-steps .mdl-content {
            text-align: left;
        }
       .alert-custom{display: inline-block;
    padding: 7px 12px;}


@media( max-width : 585px ) {

    .wizard {
        width: 90%;
        height: auto !important;
    }

    span.round-tab {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard .nav-tabs > li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard li.active:after {
        content: " ";
        position: absolute;
        left: 35%;
    }
}

@media (max-width: 568px) {
    .wizard {
        width: 100%;
        padding: 15px 10px;
    }
    .wizard-inner li div {
        line-height: 18px;
    }
}