/*

Theme Name: Lenaprom
Theme URI: https://www.lestudio404.fr/
Version: 1.1
Description: Thème sur mesure pour Lenaprom
Author: Le Studio 404
Author URI: https://www.lestudio404.fr
Template: Divi

*/

.dc-modal {
    visibility: hidden;
    /* Pour centrer verticalement le contenu de la modale */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dc-modal.visible, .dc-close.visible {
    visibility: visible;
}

.dc-trigger { /**style du bouton **/
    cursor: pointer;
	background: #e02b20;
	padding: 5px 15px 5px 15px; 
	border-radius: 20px; 
	color: #ffffff;
}
.dc-trigger a, a:hover { /** Style du bouton au survol **/
    background: #ffffff;
    color: #e02b20;
}

.dc-close { /** Style de l'icone pour fermer la modale **/
    display: none;
    font-family: "ETmodules";
    font-size: 70px;
    color: white;
    z-index: 250000;
    position: fixed;
    top: 5%;
    right: 2%;
    cursor: pointer;
}