#DonForm{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 3;
}
#SucMes{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    visibility: hidden;
    opacity: 0;
    /* visibility: visible; */
    transition: opacity 0.5s ease-in-out;
    z-index: 3;
}
#SucMes h2{
    margin-bottom: 1rem;
}
#SucMes div{
    width: 650px;
    text-align: center;
    margin-bottom: 1.5rem;
}
.DF_Wrap{
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-overflow-scrolling: touch;
}
#ph_layer{
    top: 0; 
    height: 5rem;
    position: fixed;
    z-index: 3;
    transition: transform 0.3s ease-in-out;
}
.DF_title{
    margin-top: 5.5rem;
    flex-direction: column;
    justify-content: flex-start;
}
.DF_title h2{
    margin: 0.1em 0 0 0;
}
.DF_form{
    padding-bottom: 2rem;
}
.DF_form div{
    width: 100%;
}

.MBF{
    margin-bottom: 5em;
}

label p{
    display: inline;
    margin: 0;
}

@media (max-width: 700px) {
    #SucMes div{
        width: 90%;
    }
}