
.stepwizard-step p {
    margin-top: 10px;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard {
    display: table;
    width: 50%;
    position: relative;

}
.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 0px;
    background-color: #ccc;
    z-order: 0;
}
.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}


.stp-bg{
    background:#f1f1f1;
    padding:20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-top:20px;
    margin-bottom: 20px;

}

/* Manuel Select Option*/

.select-options{
    padding: 0;
    margin: 0
}
.select-options li{
    display: inline-block;
    margin-right: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.select-options li a{
    display: block;
    border:2px solid #e7e9eb;
    border-radius: 3px;
    transition: 0.3s;
}
.select-options li .image{
    width: 98px;
    height: 56px;
    filter: gray;
    /*-webkit-filter: grayscale(100%);*/
    /*opacity: 0.4;*/
    transition: 0.3s;
}
.select-options li a:hover{
    border-color: #ccc;
    transition: 0.3s;
}
.select-options li a:hover .image{
    filter: none;
    -webkit-filter: grayscale(0%);
    transition: 0.3s;
    opacity: 1;
}