/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
@media screen and (max-width: 767px) {
	
	.oc-accordeon-header {
	  cursor: pointer;
	} 
	.oc-accordeon-header:hover { 
	} 
	.oc-accordeon-content {
	  display: none;
	} 
	.oc-accordeon-item.active .oc-accordeon-content {
	  display: grid;
	}

	.oc-accordeon-header::after {
	  content: "▼"; 
	  position: absolute;
	  right: 10px; /* Espace à droite */
	  top : -10px;
	  font-size: 20px;
	  transition: transform 0.3s ease;
	}

	.oc-accordeon-item.active .oc-accordeon-header::after {
	  content: "▲"; 
	}

}