/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.1.1724083619
Updated: 2024-08-19 18:06:59

*/
/* Exemple de code CSS pour créer un masque */
.your-class {
  background-color: red; /* Couleur du fond */
  border-radius: 20px; /* Arrondi général */
  position: relative; /* Pour le masque */
}

.your-class::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px; /* Ajuster la largeur */
  height: 200px; /* Ajuster la hauteur */
  background-color: transparent; /* Pour voir ce qu'il y a dessous */
  border-top-right-radius: 50px; /* Arrondi inversé */
  border-bottom-left-radius: 50px; /* Pour lisser l'angle */
  z-index: 1; /* Assurez-vous que c'est supérieur à d'autres éléments */
}
