/*Below is the styling for the validator*/
.qtip-custom {
    background-color:#fff;
    border-color:red;
    border-width:2px;
    color:#000;
}
input.parsley-error, input:not([type="radio"]).parsley-error, select.parsley-error {
    color: #D8000C !important;
    background-color: #FFBABA !important;
    border: 1px solid #D8000C !important;
    -webkit-text-fill-color: red !important;
    box-shadow: 0 0 0px 1000px #FFBABA inset;
    -webkit-box-shadow: 0 0 0px 1000px #FFBABA inset;
}
input.parsley-error {
    color: #D8000C !important;
    background-color: #FFBABA !important;
    border:1px solid #D8000C !important;
    -webkit-text-fill-color: red !important;
    box-shadow: 0 0 0px 1000px #FFBABA inset !important;
    -webkit-box-shadow: 0 0 0px 1000px #FFBABA inset !important;


}

/*This style is required for parsley*/
.parsley-errors-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    font-size: 0;
    display:none !important;
}
