/*début header*/
header.masthead {
    background: url(/img/presta-background.webp) bottom / cover fixed;
    height: 750px;
}

@media only screen and (max-width: 900px) {
    header.masthead {
        background: url(/img/presta-background.webp) bottom / cover;
        height: 750px;
    }
}
/*fin*/

div#shadowing {
    position: fixed;
    background-color: #0e0e0e;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

/*devis petite presta*/
.devis-pro {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    cursor: default;
    text-align: center;
    position: fixed;
    z-index: 10000;
    font-family: 'Poppins';
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    max-height: 550px;
    width: 100%;
}

.devis-pro h2 {
    font-weight: 600;
}

.form-devis {
    margin-top: 20px;
}

.infos-devis {
    max-width: 230px;
    min-height: 36px;
    max-height: 36px;
    width: 100%;
    height: 36px;
    margin-top: 10px;
    margin-right: 7.5px;
    margin-left: 7.5px;
    border-radius: 15px;
    border: 1px solid #2a2828;
    padding: 0 10px 0 10px
}

.nb-pers-content {
    display: flex;
    justify-content: center;
}

.nb-pers-content h5{
    display: flex;
    align-items: center;
    max-width: 250px;
    margin: 0;
    margin-top: 5px;
    font-weight: 500;
}

#input-nb-pers {
    max-width: 90px;
    width: auto;
}

input[type='date']#date {
    width: 230px;
    color: #757575;
    &::-webkit-calendar-picker-indicator {
        cursor: pointer;
        color : #2a2828;
    }
}

#details {
    max-height: 140px;
    max-width: 350px;
    height: auto;
    margin: 0;
    margin-top: 10px;
}

input[type='submit']#submit {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type='submit']#submit {
    background: none;
    border: 4px solid #16a34a;
    border-radius: 10px;
    color: #16a34a;
    max-width: 220px;
    width: auto;
    font-size: 1em;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
    position: relative;
    text-transform: uppercase;
}

input[type='submit']#submit:hover {
    color: #ffffff;
    background: #16a34a;
    cursor: pointer;
}

input[type='reset']#cancel {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type='reset']#cancel {
    background: none;
    border: 4px solid #963131;
    border-radius: 10px;
    color: #963131;
    max-width: 150px;
    font-size: 1em;
    font-weight: bold;
    margin: 8px;
    padding: 5px 10px;
    position: relative;
    text-transform: uppercase;
}

input[type='reset']#cancel:hover {
    color: #ffffff;
    background: #963131;
    cursor: pointer;
}

.presta-btn {
    margin-top: 10px;
}

@media only screen and (max-height: 500px) {

    .devis-pro {
        padding-bottom: 10px;
    }

    .form-devis {
        margin-top: 10px;
    }

    #details {
        max-height: 36px;
    }

    .presta-btn {
        margin-top: 0px;
    }

}

@media only screen and (max-width: 650px) {

    .devis-pro {
        max-width: 350px;
    }

    .nb-pers-content h5{
        max-width: 155px;
    }

    #details {
        max-height: 100px;
        height: auto;
    }

    input[type='submit']#submit {
        font-size: 15px;
    }

    input[type='reset']#cancel {
        font-size: 15px;
    }
}
/*fin*/

.col p {
    min-width: 300px;
}

/*devis prestation*/
#text-devis-presta {
    text-align: center;
}

#devis-presta {
    --bs-btn-color: #fff;
    background: #0d6efd; 
    border: 4px solid #0d6efd;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 200px;
    height: 70px;
    padding: 20px;
}

#devis-presta:hover {
    background: #fff;
    color: #0d6efd;
}

@media only screen and (max-width: 767px) {
    #text-devis-presta {
        margin-right: auto;
        margin-left: auto;
    }
}
/*fin*/

input[type='submit']#submit:disabled{
    background: #9d9d9d;
    color: #d9d9d9;
    cursor: not-allowed;
    border: 4px solid #757575;
    box-shadow: inset 3px 3px 10px 0px rgba(0,0,0,0.2);
}