input.parsley-success,
select.parsley-success,
textarea.parsley-success {
    background-color: #ffffff;
    border: 1px solid #468847;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    background-color: #ffffff;
    border: 1px solid #b94a48;
}

.parsley-required,
.parsley-type,
.parsley-pattern,
.parsley-minlength,
.parsley-maxlength,
.parsley-equalto {
    color: #b94a48;
}
.parsley-errors-list {
    margin: 2px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: 0.9em;
    line-height: 0.9em;
    opacity: 0;

    transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
    opacity: 1;
}
