<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Mark input boxes that gets an error on validation: */
#regForm select.invalid, #regForm input.invalid, #regForm textarea.invalid {
    background-color: #ffdddd;
}
/* Hide all steps by default: */
.tabDevis {
    display: none;
}
/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}
/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #4BA1ED;
}

.item-devis{
    font-weight: bold;
    margin-bottom: 30px;
}

.formFileDevis span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #4BA1ED;
    position: relative;
}

#regForm select option {
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
}
span.mon-etoile{
    color: #e80000;
}

span.obligatoire{
    color: #ff0000;
}

#regForm .champ-obligatoire:after {
    content: "*";
    color: red;
    padding-inline-start: .2em;
}
#regForm .form-group input textarea:focus, #regForm .form-group input input:focus{
    outline: none;
}

#regForm .form-group input, #regForm .form-group textarea {
    padding: 8px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #ced4da;
    border-radius: .375rem;
}
#regForm .form-group select {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    color: #757F95;
}
#regForm .row{
    margin: 10px 0;
}

.devis-stepper{
    text-align:center;
    margin-top:40px;
}

.prev-next{
    overflow:auto;
}
.prev-next-float{
    float:right;
}
#regForm  .civilite span {
    font-weight: 500;
}
#regForm .form-check label {
    float: left;
    margin-top: -3px;
    margin-right: 29px;
}</pre></body></html>