/* -------------
    Modal
------------- */

.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
}

button.mfp-close {
    color: #636363;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* -------------
    Formulaire
------------- */

.WrapBtnPaiement {
    text-align: center;
}

.PaiementForm {
    margin-top: 25px;
}
    .PaiementForm-field {
        margin-bottom: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .PaiementForm-field label {
            display: inline-block;
            min-width: 100px;
        }
        .PaiementForm-field input {
            padding: 6px; 
            border: 1px solid #979797;
            font-size: 14px;
            min-width: 240px;
            font-family: 'Montserrat', sans-serif;
            transition: .2s ease-out;
        }
            .PaiementForm-field input:focus {
                border-color: #4F4F4F;
                outline: 0;
            }
            
.PaiementForm-wrapBtn {
    text-align: center;
    margin-top: 25px;
}

.PaiementForm-field > div {
    position: relative;
}
.PaiementForm-field input:valid + .placeholder {
    display: none;
}
.placeholder {
    position: absolute;
    pointer-events: none;
    top: 4px;
    bottom: 2px;
    left: 6px;
    margin: auto;
    color: #888;
}
.placeholder span {
    color: red;
}