.form-wizard .control {
    position: relative;
}
 
     .form-wizard .control input, 
     .form-wizard .control select, 
     .form-wizard .control button, 
     .form-wizard .control textarea {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none !important;
        font-size: 1.2em;
        color: #333333;
        font-weight: 300;
        opacity: 1;
        padding: 6px 0px;
        z-index: 0;
    }
     .form-wizard .control select {
        margin-left: -4px;
    }



     .form-wizard .element > label {
        font-size: 1.2em;
        color: #999999;
        position: absolute;
        top: 8px;
        z-index: -1;
        margin-bottom:0;
    }

     .form-wizard .element.active > label,
     .form-wizard .element.optionList > label  {
        top: -12px;
        font-size: 1em;
        -webkit-transition: .2s;
        -moz-transition: .2s;
        transition: .2s;
        font-size: 1em;
    }
    
    .form-wizard .element.checklist.active > label {
        top: -25px;
    }
    
    .form-wizard .row.control > div {
        margin-bottom: 40px;
        
    }
         .form-wizard .control div.input {
        width: 100%;
        z-index: 3;
        height: 36px;
    }

  .form-wizard .checklist {overflow: hidden; position: relative;}
  .form-wizard .control input[type=checkbox],
  .form-wizard .control input[type=radio] {
    left: -50px;
    position: absolute;
  }
  
   .form-wizard .control input[type=checkbox]+label,
   .form-wizard .control input[type=radio]+label {
    line-height: 24px;
    position: relative;
    text-indent: 2.35em
   }
  
  .form-wizard .control input[type=checkbox]+label:before,
  .form-wizard .control input[type=radio]+label:before {
    content:" ";
    display: inline-block;
    width: 20px;
    height: 20px;
   
    position: absolute;
    top: 0;
    left: 0;
    text-indent: .0em;

    font-size: 20px;
    border: 1px solid #DDDDDD;
    line-height: 18px;
    color: #f3f3f3;
    
    -webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;

  } 
  
   .form-wizard .control input[type=radio]+label:before {
        border-radius: 50%;
   }

	.form-wizard .control input[type=checkbox]:checked + label:before,
	.form-wizard .control input[type=radio]:checked + label:before {
	    content: "\2714";
	    
	    border: 1px solid #f0b72a;
	    color: #f0b72a;
	    text-align: center;
	   
	}
	.form-wizard .control input[type=checkbox]:focus + label:before,
	.form-wizard .control input[type=radio]:focus + label:before {
	   border: 1px solid #f0b72a;
	}
	
	

.form-wizard .line {
    width: 100%;
    height: 1px;
    background: #DDDDDD;
    bottom: 0px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;

}

.form-wizard .line:before {
    content: "";
    width: 0%;
    left: 50%;
    height: 2px;
    background: #f0b72a;
    position: absolute;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    
}
.form-wizard .element.active .line:before {
    width: 100%;
    left: 0%;
    height: 2px;
    background: #f0b72a;
}

.form-wizard  .control-with-errors {
    background-color: transparent !important;
    border: 0 !important;
}

.form-wizard .line.control-with-errors:before {
    width: 100%;
    left: 0;
    height: 2px;
    background: red !important;
}

 
  .input-group-addon {
    border: 0;
    background: 0;
 }
 
 .categoria .icon img{
    height:106px;
}    
.form-wizard .element.optionList ul {padding-top:9px}
.form-wizard .element.textarea .input {
    height: auto !important;
}
    .form-wizard .element.textarea .input textarea {
        height: auto;
        overflow: hidden;
        resize: none;
        -webkit-transition: .2s;
        -moz-transition: .2s;
        transition: .2s;
}

.form-wizard .tip {
    display: none;
    position: absolute;
    bottom: -23px;
    color: #666666;
}

.form-wizard .input-group.date .input-group-addon {
    cursor: pointer;
}