//
// parsley.scss
//

.parsley-errors-list {
    margin: 0;
    padding: 0;

    >li {
        list-style: none;
        color: $danger;
        margin-top: 5px;
        padding-left: 20px;
        position: relative;

        &:before {
            content: "\F0159";
            font-family: "Material Design Icons";
            position: absolute;
            left: 2px;
            top: -1px;
        }
    }
}

.parsley-error {
    border-color: $danger;
}

.parsley-success {
    border-color: $success;
}