/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.title-accordion {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-accordion-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.title-accordion.is-open .title-accordion-arrow {
    transform: rotate(-135deg);
}
