.mg-expand-box {
    margin-bottom: 1.5em;
}

.mg-expand-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0em;
}

.mg-expand-title h3 {
    line-height: 1.2;
	
}

.mg-toggle-icon i {
    display: inline-block;
    transition: transform 0.3s ease;
	color: var(--e-global-color-secondary)!important;
}

.mg-expand-box.open .mg-toggle-icon i {
    transform: rotate(180deg);
	color: var(--e-global-color-primary)!important;
}

.mg-expand-content {
    overflow: hidden;
    max-height: calc(1.6em * 4);
    transition: max-height 0.6s ease;
}

/* hauteur max grande pour tout révéler */
.mg-expand-box.open .mg-expand-content {
    max-height: 1000px;
}
