input.notValidated,
select.notValidated {
    background: url(../../../../../../../app/imgGlobal/error-input.svg) right 10px center no-repeat #fff;
    border: 1px solid red;
    -webkit-box-shadow: 0 0 0 2px red!important;
    box-shadow: 0 0 0 2px red!important;
    transition: all linear .1s
}
input.validated,
select.validated {
    background: url(../../../../../../../app/imgGlobal/tick-input.svg) right 10px center no-repeat #fff;
    border: 1px solid green;
    -webkit-box-shadow: 0 0 0 2px green!important;
    box-shadow: 0 0 0 2px green!important;
    transition: all linear .1s
}
select.notValidated,
select.validated {
    background-position: right 10px center
}
input[type="radio"]{
    border-radius:50%;
    /*font-size:1rem;*/
    background:none;
    border:none;
    -webkit-box-shadow:none;
    box-shadow:none;
    transition:none;
}
input[type="radio"].validated,
input[type="radio"].notValidated{
    background:none;
    border:none;
    -webkit-box-shadow:none;
    box-shadow:none !important;
    transition:none;
}




