/**
 * Theme Name: Norix
 * Theme URI:
 * Description: WordPress theme Norix
 * Version: 1.0.0
 * Author: Post Scriptum
 * Author URI: https://post-scriptum-web-agency.com
 */
  body .elementor .elementor-element .un-produit{
    position:relative;
  }
 body .elementor .elementor-element .un-produit .contenu-produit{
    height:auto;
    top:100%;
    right:0;
    left:0;
    position:absolute;
    opacity:0;
    transition:all 0.5s;
 }
  body .elementor .elementor-element .un-produit:hover{
    cursor:pointer;
  }
 body .elementor .elementor-element .un-produit:hover .contenu-produit{
    height:auto;
    top:0;
    bottom:0;
    right:0;
    left:0;
    position:absolute;
    opacity:1;
    transition:all 0.5s;
 }