/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
/* Hide "Cette question est obligatoire" text */
.ls-question-mandatory {
    display: none;
}

/* Remove red background/border on unanswered mandatory questions */
.question-container.missing,
.question-container.has-error {
    background-color: transparent !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}


/* Remove red text color on missing mandatory fields */
.question-container.missing .question-text {
    color: inherit !important;
}

.question-container.missing input,
.question-container.missing .input-error {
    border-color: #ccc !important;
}

/* Hide the red error tip */
.ls-em-tip.ls-em-error {
    display: none;
}
