/**
 * Default CSS theme for jQuery-Form-Validator.
 * @version 2.2.34
 * @author Victor Jonsson <victorjonsson.se>
 */


/* Input element having an invalid value */
select.error,
input.error {
    border-color: #b94a48;
    background-position: right 5px center;
    background-repeat: no-repeat;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}

/* Input element having a valid value */
select.valid,
input.valid {
    border-color: #468847;
    background-position: right 5px center;
    background-repeat: no-repeat;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}

/* File inputs with invalid value */
input[type="file"].error {
    color: #b94a48;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* File inputs with valid value */
input[type="file"].valid {
    color: #468847;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Element showing an inline error message */
.form-error {
    display: block;
    color: #b94a48;
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 140%;
}

/* Element showing the help text declared in data-validation-help */
span.help {
    color: #999;
    font-size: 90%;
}

/* Here you can style the look of the input while server being
  requested when using data-validation="server" */
select.validating-server-side,
input.validating-server-side {
    opacity: 0.5;
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-color: #FFF;
}

/* Here you can style the entire form while server being
  requested when using data-validation="server" */
form.validating-server-side {

}

/* Container for error messages when having configuration
   parameter "errorMessagePosition" set to "top" */
div.form-error {
    background-color: #f2dede;
    padding: 15px;
    margin-bottom: 20px;
    border: #b94a48 1px solid;
    border-radius: 4px;
}

/* Title in top of the error message container */
div.form-error strong {
    font-weight: bold;
    display: block;
    margin: 0;
    padding: 0 0 10px;
}

/* Typography styling in the error message container */
div.form-error strong,
div.form-error ul li {
    line-height: 140%;
    color: #b94a48;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
}

div.form-error ul,
div.form-error ul li {
    background: none;
}