/*****************************************************
Le style autour du texte : la "popup"
******************************************************/
.wpforms-custom-confirmation .wpforms-confirmation-container-full{
    background: #fafafa;
    border: 0;
    box-sizing: border-box;
    width: 50%;
    -webkit-box-shadow: 10px 10px 20px 0px #000000;
    box-shadow: 10px 10px 20px 0px #000000;
    border-radius: 20px;
}
/*****************************************************
Le style du texte
******************************************************/
.wpforms-custom-confirmation .title-row{
    margin-bottom: 20px;
}

.wpforms-custom-confirmation .confirmation-title{
    font-weight: bold;
    font-size: 30px;
}

.wpforms-custom-confirmation .confirmation-checkmark{
    color: #64BB46;
    font-size: 40px;
}

.wpforms-custom-confirmation p{
    text-align: inherit;
}

.wpforms-custom-confirmation a{
    color: inherit;
    text-decoration: none;
}


/*Réduire la taille de la "popup" sur écran de téléphone vertical*/
@media screen and (max-width: 768px) {
    .wpforms-confirmation-container-full{
        width: 90%;
    }
}